--[ GUI CHEAT SCRIPT - CHARACTER SELECTOR ] -- Created by request. Use at your own risk. -- Creator: Redsky-Catl0l local Players = game:GetService("Players") local player = Players.LocalPlayer -- Create ScreenGui local screenGui = Instance.new("ScreenGui") screenGui.Name = "CheatGUI" screenGui.Parent = player:WaitForChild("PlayerGui") -- Create main frame local mainFrame = Instance.new("Frame") mainFrame.Size = UDim2.new(0, 250, 0, 430) mainFrame.Position = UDim2.new(0.5, -125, 0.5, -215) mainFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 40) mainFrame.BackgroundTransparency = 0.1 mainFrame.BorderSizePixel = 0 mainFrame.Active = true mainFrame.Draggable = true mainFrame.Parent = screenGui -- Title local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0, 40) title.Position = UDim2.new(0, 0, 0, 0) title.Text = "Character Selector" title.TextColor3 = Color3.fromRGB(255, 255, 255) title.BackgroundTransparency = 1 title.Font = Enum.Font.GothamBold title.TextSize = 18 title.Parent = mainFrame -- Creator credit local creatorText = Instance.new("TextLabel") creatorText.Size = UDim2.new(1, 0, 0, 20) creatorText.Position = UDim2.new(0, 0, 0, 35) creatorText.Text = "Creator: Redsky-Catl0l" creatorText.TextColor3 = Color3.fromRGB(180, 180, 200) creatorText.BackgroundTransparency = 1 creatorText.Font = Enum.Font.Gotham creatorText.TextSize = 11 creatorText.Parent = mainFrame -- Close button local closeBtn = Instance.new("TextButton") closeBtn.Size = UDim2.new(0, 30, 0, 30) closeBtn.Position = UDim2.new(1, -35, 0, 5) closeBtn.Text = "X" closeBtn.TextColor3 = Color3.fromRGB(255, 255, 255) closeBtn.BackgroundColor3 = Color3.fromRGB(200, 50, 50) closeBtn.Font = Enum.Font.GothamBold closeBtn.TextSize = 14 closeBtn.Parent = mainFrame closeBtn.MouseButton1Click:Connect(function() screenGui:Destroy() end) -- Function to create buttons local function createButton(name, yPos, argsTable) local btn = Instance.new("TextButton") btn.Size = UDim2.new(0.8, 0, 0, 45) btn.Position = UDim2.new(0.1, 0, 0, yPos) btn.Text = name btn.TextColor3 = Color3.fromRGB(255, 255, 255) btn.BackgroundColor3 = Color3.fromRGB(70, 70, 90) btn.Font = Enum.Font.GothamSemibold btn.TextSize = 16 btn.BorderSizePixel = 0 btn.Parent = mainFrame btn.MouseButton1Click:Connect(function() local remoteEvent = player:WaitForChild("PlayerGui"):WaitForChild("Character"):WaitForChild("LocalScript"):WaitForChild("RE") remoteEvent:FireServer(unpack(argsTable)) btn.BackgroundColor3 = Color3.fromRGB(100, 100, 120) task.wait(0.1) btn.BackgroundColor3 = Color3.fromRGB(70, 70, 90) end) return btn end -- Thank you text local thankYouText = Instance.new("TextLabel") thankYouText.Size = UDim2.new(1, 0, 0, 25) thankYouText.Position = UDim2.new(0, 0, 0, 395) thankYouText.Text = "Thank you for using the script :)" thankYouText.TextColor3 = Color3.fromRGB(150, 200, 150) thankYouText.BackgroundTransparency = 1 thankYouText.Font = Enum.Font.Gotham thankYouText.TextSize = 11 thankYouText.Parent = mainFrame -- Create all character buttons createButton("Yuji", 65, {"Yuji", true}) createButton("Hakari", 120, {"Hakari", true}) createButton("Yuta", 175, {"Yuta", true}) createButton("Heian Sukuna", 230, {"HeianSukuna", true}) createButton("Shinjuku Gojo", 285, {"FullPowerGojo", true}) createButton("Shibuya Gojo", 340, {"ShibuyaGojo", true})