local Players = game:GetService("Players") local TweenService = game:GetService("TweenService") local Player = Players.LocalPlayer local PlayerGui = Player:WaitForChild("PlayerGui") local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "CreditsGUI" ScreenGui.ResetOnSpawn = false ScreenGui.Parent = PlayerGui local Main = Instance.new("Frame") Main.Size = UDim2.new(0, 320, 0, 170) Main.Position = UDim2.new(0.5, -160, 0.5, -85) Main.BackgroundColor3 = Color3.fromRGB(25,25,25) Main.Parent = ScreenGui local Corner = Instance.new("UICorner") Corner.CornerRadius = UDim.new(0,16) Corner.Parent = Main local Stroke = Instance.new("UIStroke") Stroke.Thickness = 3 Stroke.Parent = Main -- زر الإغلاق local Close = Instance.new("TextButton") Close.Size = UDim2.new(0,30,0,30) Close.Position = UDim2.new(1,-35,0,5) Close.BackgroundTransparency = 1 Close.Text = "✕" Close.TextScaled = true Close.Font = Enum.Font.GothamBold Close.TextColor3 = Color3.new(1,1,1) Close.Parent = Main Close.MouseButton1Click:Connect(function() ScreenGui:Destroy() end) local Title = Instance.new("TextLabel") Title.Size = UDim2.new(1,0,0,70) Title.BackgroundTransparency = 1 Title.Text = "Made By\nLaiothy_2013" Title.TextColor3 = Color3.new(1,1,1) Title.TextScaled = true Title.Font = Enum.Font.GothamBold Title.Parent = Main local Button = Instance.new("TextButton") Button.Size = UDim2.new(0.8,0,0,45) Button.Position = UDim2.new(0.1,0,0.68,0) Button.Text = "📋 انسخ اليوسر" Button.TextScaled = true Button.Font = Enum.Font.GothamBold Button.BackgroundColor3 = Color3.fromRGB(40,40,40) Button.TextColor3 = Color3.new(1,1,1) Button.Parent = Main local BCorner = Instance.new("UICorner") BCorner.CornerRadius = UDim.new(0,12) BCorner.Parent = Button Button.MouseButton1Click:Connect(function() if setclipboard then setclipboard("Laiothy_2013") Button.Text = "✅ تم النسخ!" task.wait(1.5) Button.Text = "📋 انسخ اليوسر" else Button.Text = "❌ Executor ما يدعم النسخ" task.wait(1.5) Button.Text = "📋 انسخ اليوسر" end end) task.spawn(function() local hue = 0 while ScreenGui.Parent do Stroke.Color = Color3.fromHSV(hue,1,1) hue = (hue + 0.005) % 1 task.wait(0.02) end end) --[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] loadstring(game:HttpGet("https://raw.githubusercontent.com/Gaurav-0196/Mickey-Chat/refs/heads/main/MickeyChat"))()