Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --x0y0zkidd admin script
- local plr = game:GetService("Players").LocalPlayer
- local hum = plr.Character.Humanoid
- local hrp = plr.Character.HumanoidRootPart
- local uis = game:GetService("UserInputService")
- local rightleg = "Right Leg"
- local screen = Instance.new("ScreenGui")
- screen.Name = "xyz_admin"
- screen.Parent = plr.PlayerGui
- local frame = Instance.new("Frame")
- frame.Parent = screen
- frame.Size = UDim2.new(0, 270, 0, 350)
- frame.BackgroundColor3 = Color3.fromRGB(255,20,147)
- frame.Position = UDim2.new(0, 1340, 0, 550)
- frame.Active = true
- frame.Selectable = true
- frame.Draggable = true
- local keyt = Instance.new("TextBox")
- keyt.Parent = frame
- keyt.Size = UDim2.new(0, 105, 0, 45)
- keyt.Position = UDim2.new(0, 85, 0, 174)
- keyt.Text = ""
- keyt.TextColor3 = Color3.fromRGB(255,255,255)
- keyt.TextSize = 10
- keyt.PlaceholderText = ""
- keyt.ClearTextOnFocus = false
- keyt.MultiLine = true
- keyt.Font = Enum.Font.GothamBold
- keyt.PlaceholderColor3 = Color3.fromRGB(65,65,65)
- keyt.BackgroundColor3 = Color3.fromRGB(186,85,211)
- keyt.BackgroundTransparency = 1
- keyt.TextXAlignment = "Left"
- keyt.TextYAlignment = "Top"
- local exe = Instance.new("ImageLabel")
- exe.Parent = frame
- exe.Size = keyt.Size
- exe.Position = keyt.Position
- exe.BackgroundTransparency = 1
- exe.Image = "rbxassetid://89760411485169"
- exe.ZIndex = 1
- keyt.ZIndex = 2
- local btn = Instance.new("TextButton")
- btn.Parent = frame
- btn.Size = UDim2.new(0, 20, 0, 19)
- btn.Position = UDim2.new(0, 245, 0, 4)
- btn.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- btn.Text = "X"
- btn.TextSize = 12
- btn.TextColor3 = Color3.fromRGB(255,0,0)
- btn.MouseButton1Click:Connect(function()
- screen:Destroy()
- end)
- local text = Instance.new("TextBox")
- text.Parent = frame
- text.Size = UDim2.new(0, 105, 0, 45)
- text.Position = UDim2.new(0, 85, 0, 54)
- text.Text = ""
- text.TextSize = 12
- text.PlaceholderText = "Command"
- text.PlaceholderColor3 = Color3.fromRGB(65,65,65)
- text.ClearTextOnFocus = false
- text.BackgroundColor3 = Color3.fromRGB(186,85,211)
- text.FocusLost:Connect(function(e)
- if e then
- if text.Text:sub(1, 2) == "to" then
- local args = text.Text:sub(4)
- if args ~= "" then
- for _, oth in pairs(game:GetService("Players"):GetPlayers()) do
- if oth.Name:lower():find(args:lower()) or oth.DisplayName:lower():find(args:lower()) then
- hrp.CFrame = oth.Character.HumanoidRootPart.CFrame
- end
- end
- end
- elseif text.Text:sub(1, 6) == "follow" then
- local args2 = text.Text:sub(8)
- if args ~= "" then
- for _, oth2 in pairs(game:GetService("Players"):GetPlayers()) do
- if oth2.Name:lower():find(args2:lower()) or oth2.DisplayName:lower():find(args2:lower()) then
- local connection
- connection = game:GetService("RunService").RenderStepped:Connect(function()
- hum:MoveTo(oth2.Character.HumanoidRootPart.Position)
- if text.Text == "unfollow" then
- connection:Disconnect()
- wait()
- hum:MoveTo(hrp.Position)
- end
- end)
- end
- end
- end
- elseif text.Text:sub(1, 7) == "headsit" then
- local args3 = text.Text:sub(9)
- if args3 ~= "" then
- for _, oth3 in pairs(game:GetService("Players"):GetPlayers()) do
- if oth3.Name:lower():find(args3:lower()) or oth3.DisplayName:lower():find(args3:lower()) then
- hum.Sit = true
- wait()
- local con2
- con2 = game:GetService("RunService").RenderStepped:Connect(function()
- hrp.CFrame = oth3.Character.Head.CFrame * CFrame.Angles(math.pi * 0, 1, 0)
- uis.InputBegan:Connect(function(i2, g2)
- if i2.KeyCode == Enum.KeyCode.Space and not g2 then
- hum.Sit = false
- wait()
- con2:Disconnect()
- end
- end)
- end)
- end
- end
- end
- elseif text.Text:sub(1, 8) == "waypoint" then
- local args4 = text.Text:sub(10)
- if args4 ~= "" then
- local p = Instance.new("Part")
- p.Parent = plr.Character
- p.Name = args4
- p.Transparency = 0.9
- p.Anchored = true
- p.CanCollide = false
- p.BrickColor = BrickColor.new("Pink")
- if plr.Character:FindFirstChild("RightFoot") then
- p.CFrame = plr.Character.RightFoot.CFrame
- else
- p.CFrame = plr.Character[rightleg].CFrame
- end
- end
- elseif text.Text:sub(1, 5) == "wayrm" then
- local args5 = text.Text:sub(7)
- if args5 ~= "" then
- plr.Character[args5]:Destroy()
- end
- elseif text.Text:sub(1, 5) == "tpway" then
- local args6 = text.Text:sub(7)
- if args6 ~= "" then
- hrp.CFrame = plr.Character[args6].CFrame
- end
- elseif text.Text:sub(1, 4) == "view" then
- local args7 = text.Text:sub(6)
- if args7 ~= "" then
- for _, oth4 in pairs(game:GetService("Players"):GetPlayers()) do
- if oth4.Name:lower():find(args7:lower()) or oth4.DisplayName:lower():find(args7:lower()) then
- game.Workspace.Camera.CameraSubject = oth4.Character
- end
- end
- end
- elseif text.Text == "unview" then
- game.Workspace.Camera.CameraSubject = plr.Character
- elseif text.Text:sub(1, 5) == "speed" then
- local args8 = text.Text:sub(7)
- if args8 ~= "" then
- hum.WalkSpeed = args8
- end
- elseif text.Text:sub(1, 9) == "jumppower" then
- local args9 = text.Text:sub(11)
- if args9 ~= "" then
- hum.JumpPower = args9
- end
- elseif text.Text:sub(1, 7) == "gravity" then
- local grav = text.Text:sub(9)
- if grav ~= "" then
- game.Workspace.Gravity = grav
- end
- elseif text.Text:sub(1,3) == "say" then
- local say = text.Text:sub(5)
- if say ~= "" then
- if game:FindFirstChild("TextChatService") then
- game.TextChatService.TextChannels.RBXGeneral:SendAsync(say)
- else
- game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(say, "ALL")
- end
- end
- elseif text.Text == "grabtools" then
- local toolcon
- toolcon = game:GetService("RunService").RenderStepped:Connect(function()
- for _, tool in pairs(game.Workspace:GetChildren()) do
- if tool:IsA("Tool") then
- tool.Parent = plr.Backpack
- end
- end
- end)
- elseif text.Text == "ungrabtools" then
- toolcon:Disconnect()
- elseif text.Text == "droptools" then
- for _, drop in pairs(plr.Backpack:GetChildren()) do
- if drop:IsA("Tool") then
- drop.Parent = game.Workspace
- end
- end
- elseif text.Text == "lay" then
- hum.Sit = true
- task.wait(0.1)
- hum.RootPart.CFrame = hum.RootPart.CFrame * CFrame.Angles(math.pi * 0.5, 0, 0)
- for _, nigger in pairs(hum:GetPlayingAnimationTracks()) do
- nigger:Stop()
- end
- elseif text.Text == "sit" then
- hum.Sit = true
- elseif text.Text == "reset" then
- hum.Health = 0
- elseif text.Text == "rejoin" then
- local p = game:GetService("Players"):GetPlayers()
- if #p <= 1 then
- p.LocalPlayer:Kick("Rejoin")
- wait()
- game:GetService("TeleportService"):Teleport(game.PlaceId, p.LocalPlayer)
- else
- game:GetService("TeleportService"):TeleportToPlaceInstance(game.PlaceId, game.JobId, p.LocalPlayer)
- end
- elseif text.Text:sub(1, 7) == "maxzoom" then
- local mz = text.Text:sub(9)
- if mz ~= "" then
- plr.CameraMaxZoomDistance = mz
- end
- elseif text.Text:sub(1, 7) == "minzoom" then
- local minz = text.Text:sub(9)
- if minz ~= "" then
- plr.CameraMinZoomDistance = minz
- end
- elseif text.Text == "clicktp" then
- game:GetService("UserInputService").InputBegan:Connect(function(input, gay)
- if gay then return end
- local shift = game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl)
- if input.UserInputType == Enum.UserInputType.MouseButton1 then
- if shift then
- mouse = game:GetService("Players").LocalPlayer:GetMouse()
- local tp = mouse.Hit+Vector3.new(0,2.5,0)
- tp = CFrame.new(tp.X,tp.Y,tp.Z)
- hrp.CFrame = tp
- else
- print("Only m1 :(")
- end
- end
- end)
- elseif text.Text == "infjump" then
- game:GetService("UserInputService").InputBegan:Connect(function(i,g)
- if i.KeyCode == Enum.KeyCode.Space and not g then
- plr.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
- end
- end)
- elseif text.Text == "jump" then
- plr.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
- end
- end
- end)
- local btn2 = Instance.new("TextButton")
- btn2.Parent = frame
- btn2.Size = UDim2.new(0, 105, 0, 45)
- btn2.Position = UDim2.new(0, 85, 0, 114)
- btn2.Text = "Clear"
- btn2.TextSize = 11
- btn2.BackgroundColor3 = Color3.fromRGB(186,85,211)
- btn2.MouseButton1Click:Connect(function()
- text.Text = ""
- end)
- uis.InputBegan:Connect(function(i, g)
- if i.KeyCode == Enum.KeyCode.Semicolon and not g then
- text:CaptureFocus()
- wait(0)
- text.Text = ""
- end
- end)
- local btn3 = Instance.new("TextButton")
- btn3.Parent = frame
- btn3.Size = UDim2.new(0, 75, 0, 15)
- btn3.Position = UDim2.new(0, 34, 0, 16)
- btn3.Text = "Command list"
- btn3.BackgroundColor3 = Color3.fromRGB(186,85,211)
- btn3.MouseButton1Click:Connect(function()
- local frame2 = Instance.new("Frame")
- frame2.Parent = screen
- frame2.Size = UDim2.new(0, 310, 0, 420)
- frame2.BackgroundColor3 = Color3.fromRGB(255,20,147)
- frame2.Position = UDim2.new(0, 1040, 0, 550)
- frame2.Name = "f2"
- frame2.Active = true
- frame2.Selectable = true
- frame2.Draggable = true
- local label2 = Instance.new("TextLabel")
- label2.Parent = frame2
- label2.BorderSizePixel = 0
- label2.TextSize = 11
- label2.Text = "to <player> //tp you to player\nfollow<player> //follows player\nheadsit <player> //sits to player's head\nwaypoint <name> //creates a waypoint\nwayrm <name> //removes waypoint by name\ntpway <name> //tp you to wyapoint by name\nview <player> spectate the player\nunview //stop spectating\nspeed <num> //changes ur speed\njumppower <num> //changes ur jumppower\ngravity <num> //changes ur gravity\nsay <msg> says the msg in chat\ngrabtools //grabs all the tools\nungrabtools //stop grabbingtools\ndroptools //drops all the tools\nlay //makes you lay\nsit //makes you sit\nreset //reset you\nmaxzoom <num> //set your maxzoom\nminzoom <num> //set your minzoom\nrejoin //rejoin the game\nclicktp //ctrl + m1 to tp\ninfjump // inf jumps\njump //jumps"
- label2.Position = UDim2.new(0, 155, 0, 220)
- local labelC = Instance.new("TextLabel")
- labelC.Parent = frame2
- labelC.BorderSizePixel = 0
- labelC.TextSize = 14
- labelC.Text = "Command list"
- labelC.Position = UDim2.new(0, 150, 0, 15)
- local btnX = Instance.new("TextButton")
- btnX.Parent = frame2
- btnX.Size = UDim2.new(0, 20, 0, 19)
- btnX.Position = UDim2.new(0, 284, 0, 4)
- btnX.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- btnX.Text = "X"
- btnX.TextSize = 12
- btnX.TextColor3 = Color3.fromRGB(255,0,0)
- btnX.MouseButton1Click:Connect(function()
- frame2:Destroy()
- end)
- end)
- local btn4 = Instance.new("TextButton")
- btn4.Parent = frame
- btn4.Size = UDim2.new(0, 75, 0, 15)
- btn4.Position = UDim2.new(0, 162, 0, 16)
- btn4.Text = "Themes"
- btn4.BackgroundColor3 = Color3.fromRGB(186,85,211)
- btn4.MouseButton1Click:Connect(function()
- local frame3 = Instance.new("Frame")
- frame3.Parent = screen
- frame3.Size = UDim2.new(0, 235, 0, 250)
- frame3.BackgroundColor3 = Color3.fromRGB(255,20,147)
- frame3.Position = UDim2.new(0, 1340, 0, 250)
- frame3.Name = "f3"
- frame3.Active = true
- frame3.Selectable = true
- frame3.Draggable = true
- local btnX2 = Instance.new("TextButton")
- btnX2.Parent = frame3
- btnX2.Size = UDim2.new(0, 20, 0, 19)
- btnX2.Position = UDim2.new(0, 210, 0, 4)
- btnX2.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- btnX2.Text = "X"
- btnX2.TextSize = 12
- btnX2.TextColor3 = Color3.fromRGB(255,0,0)
- btnX2.MouseButton1Click:Connect(function()
- frame3:Destroy()
- end)
- local btnT = Instance.new("TextButton")
- btnT.Parent = frame3
- btnT.Size = UDim2.new(0, 55, 0, 25)
- btnT.Position = UDim2.new(0, 92, 0, 35)
- btnT.Text = "Light"
- btnT.BackgroundColor3 = Color3.fromRGB(186,85,211)
- btnT.TextSize = 11
- btnT.MouseButton1Click:Connect(function()
- frame.BackgroundColor3 = Color3.fromRGB(255,255,255)
- btn3.BackgroundColor3 = Color3.fromRGB(105,105,105)
- btn3.TextColor3 = Color3.fromRGB(255,255,255)
- btn4.BackgroundColor3 = Color3.fromRGB(105,105,105)
- btn4.TextColor3 = Color3.fromRGB(255,255,255)
- text.BackgroundColor3 = Color3.fromRGB(105,105,105)
- text.TextColor3 = Color3.fromRGB(255,255,255)
- text.PlaceholderColor3 = Color3.fromRGB(255,255,255)
- btn2.BackgroundColor3 = Color3.fromRGB(105,105,105)
- btn2.TextColor3 = Color3.fromRGB(255,255,255)
- screen.Frame.TextLabel.TextColor3 = Color3.fromRGB(0,0,0)
- screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
- frame3.BackgroundColor3 = Color3.fromRGB(255,255,255)
- btnT.BackgroundColor3 = Color3.fromRGB(105,105,105)
- screen.f3.btnT2.BackgroundColor3 = Color3.fromRGB(105,105,105)
- screen.f3.btnT3.BackgroundColor3 = Color3.fromRGB(105,105,105)
- screen.f3.btnT4.BackgroundColor3 = Color3.fromRGB(105,105,105)
- screen.f3.textT.BackgroundColor3 = Color3.fromRGB(105,105,105)
- btnT.TextColor3 = Color3.fromRGB(255,255,255)
- screen.f3.btnT2.TextColor3 = Color3.fromRGB(255,255,255)
- screen.f3.btnT3.TextColor3 = Color3.fromRGB(255,255,255)
- screen.f3.btnT4.TextColor3 = Color3.fromRGB(255,255,255)
- screen.f3.textT.TextColor3 = Color3.fromRGB(255,255,255)
- screen.f3.labelT.TextColor3 = Color3.fromRGB(0,0,0)
- screen.f3.labelT2.TextColor3 = Color3.fromRGB(0,0,0)
- screen:WaitForChild("f2").BackgroundColor3 = Color3.fromRGB(255,255,255)
- end)
- local btnT2 = Instance.new("TextButton")
- btnT2.Parent = frame3
- btnT2.Size = UDim2.new(0, 55, 0, 25)
- btnT2.Position = UDim2.new(0, 92, 0, 85)
- btnT2.Text = "Dark"
- btnT2.BackgroundColor3 = Color3.fromRGB(186,85,211)
- btnT2.TextSize = 11
- btnT2.Name = "btnT2"
- btnT2.MouseButton1Click:Connect(function()
- frame.BackgroundColor3 = Color3.fromRGB(65,65,65)
- btn3.BackgroundColor3 = Color3.fromRGB(105,105,105)
- btn3.TextColor3 = Color3.fromRGB(255,255,255)
- btn4.BackgroundColor3 = Color3.fromRGB(105,105,105)
- btn4.TextColor3 = Color3.fromRGB(255,255,255)
- text.BackgroundColor3 = Color3.fromRGB(105,105,105)
- text.TextColor3 = Color3.fromRGB(255,255,255)
- text.PlaceholderColor3 = Color3.fromRGB(255,255,255)
- btn2.BackgroundColor3 = Color3.fromRGB(105,105,105)
- btn2.TextColor3 = Color3.fromRGB(255,255,255)
- btn.BackgroundColor3 = Color3.fromRGB(255,255,255)
- screen.Frame.TextLabel.TextColor3 = Color3.fromRGB(255,255,255)
- screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(255,255,255)
- frame3.BackgroundColor3 = Color3.fromRGB(65,65,65)
- btnT.BackgroundColor3 = Color3.fromRGB(105,105,105)
- btnT2.BackgroundColor3 = Color3.fromRGB(105,105,105)
- screen.f3.btnT3.BackgroundColor3 = Color3.fromRGB(105,105,105)
- screen.f3.btnT4.BackgroundColor3 = Color3.fromRGB(105,105,105)
- screen.f3.textT.BackgroundColor3 = Color3.fromRGB(105,105,105)
- btnT.TextColor3 = Color3.fromRGB(255,255,255)
- btnT2.TextColor3 = Color3.fromRGB(255,255,255)
- screen.f3.btnT3.TextColor3 = Color3.fromRGB(255,255,255)
- screen.f3.btnT4.TextColor3 = Color3.fromRGB(255,255,255)
- screen.f3.textT.TextColor3 = Color3.fromRGB(255,255,255)
- screen.f3.labelT.TextColor3 = Color3.fromRGB(255,255,255)
- screen.f3.labelT2.TextColor3 = Color3.fromRGB(255,255,255)
- screen:WaitForChild("f2").BackgroundColor3 = Color3.fromRGB(65,65,65)
- end)
- local btnT3 = Instance.new("TextButton")
- btnT3.Parent = frame3
- btnT3.Size = UDim2.new(0, 55, 0, 25)
- btnT3.Position = UDim2.new(0, 92, 0, 135)
- btnT3.Text = "Basic"
- btnT3.BackgroundColor3 = Color3.fromRGB(186,85,211)
- btnT3.TextSize = 11
- btnT3.Name = "btnT3"
- btnT3.MouseButton1Click:Connect(function()
- frame.BackgroundColor3 = Color3.fromRGB(255,20,147)
- btn3.BackgroundColor3 = Color3.fromRGB(186,85,211)
- btn3.TextColor3 = Color3.fromRGB(0,0,0)
- btn4.BackgroundColor3 = Color3.fromRGB(186,85,211)
- btn4.TextColor3 = Color3.fromRGB(0,0,0)
- text.BackgroundColor3 = Color3.fromRGB(186,85,211)
- text.TextColor3 = Color3.fromRGB(0,0,0)
- text.PlaceholderColor3 = Color3.fromRGB(65,65,65)
- btn2.BackgroundColor3 = Color3.fromRGB(186,85,211)
- btn2.TextColor3 = Color3.fromRGB(0,0,0)
- btn.BackgroundColor3 = Color3.fromRGB(0,0,0)
- screen.Frame.TextLabel.TextColor3 = Color3.fromRGB(0,0,0)
- screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
- frame3.BackgroundColor3 = Color3.fromRGB(255,20,147)
- btnT.BackgroundColor3 = Color3.fromRGB(186,85,211)
- btnT2.BackgroundColor3 = Color3.fromRGB(186,85,211)
- btnT3.BackgroundColor3 = Color3.fromRGB(186,85,211)
- screen.f3.btnT4.BackgroundColor3 = Color3.fromRGB(186,85,211)
- screen.f3.textT.BackgroundColor3 = Color3.fromRGB(186,85,211)
- screen:WaitForChild("f2").BackgroundColor3 = Color3.fromRGB(255,20,147)
- end)
- local labelT = Instance.new("TextLabel")
- labelT.Parent = frame3
- labelT.BorderSizePixel = 0
- labelT.TextSize = 14
- labelT.Text = "Themes"
- labelT.Position = UDim2.new(0, 120, 0, 15)
- labelT.Name = "labelT"
- local textT = Instance.new("TextBox")
- textT.Parent = frame3
- textT.Size = UDim2.new(0, 85, 0, 25)
- textT.Position = UDim2.new(0, 78, 0, 174)
- textT.Text = ""
- textT.PlaceholderText = "Own"
- textT.TextSize = 11
- textT.PlaceholderColor3 = Color3.fromRGB(65,65,65)
- textT.ClearTextOnFocus = false
- textT.BackgroundColor3 = Color3.fromRGB(186,85,211)
- textT.Name = "textT"
- local labelT2 = Instance.new("TextLabel")
- labelT2.Parent = frame3
- labelT2.BorderSizePixel = 0
- labelT2.Text = "Example:\nblue"
- labelT2.TextSize = 10
- labelT2.Position = UDim2.new(0, 200, 0, 186)
- labelT2.Name = "labelT2"
- textT.FocusLost:Connect(function(ent)
- if ent then
- if textT.Text == "blue" then
- frame.BackgroundColor3 = Color3.fromRGB(0,0,255)
- btn3.BackgroundColor3 = Color3.fromRGB(0,191,255)
- btn3.TextColor3 = Color3.fromRGB(0,0,0)
- btn4.BackgroundColor3 = Color3.fromRGB(0,191,255)
- btn4.TextColor3 = Color3.fromRGB(0,0,0)
- text.BackgroundColor3 = Color3.fromRGB(0,191,255)
- text.TextColor3 = Color3.fromRGB(0,0,0)
- text.PlaceholderColor3 = Color3.fromRGB(65,65,65)
- btn2.BackgroundColor3 = Color3.fromRGB(0,191,255)
- btn2.TextColor3 = Color3.fromRGB(0,0,0)
- btn.BackgroundColor3 = Color3.fromRGB(0,0,0)
- screen.Frame.TextLabel.TextColor3 = Color3.fromRGB(0,0,0)
- screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
- frame3.BackgroundColor3 = Color3.fromRGB(0,0,255)
- btnT.BackgroundColor3 = Color3.fromRGB(0,191,255)
- btnT2.BackgroundColor3 = Color3.fromRGB(0,191,255)
- btnT3.BackgroundColor3 = Color3.fromRGB(0,191,255)
- screen.f3.btnT4.BackgroundColor3 = Color3.fromRGB(0,191,255)
- textT.BackgroundColor3 = Color3.fromRGB(0,191,255)
- screen:WaitForChild("f2").BackgroundColor3 = Color3.fromRGB(0,0,255)
- elseif textT.Text == "red" then
- frame.BackgroundColor3 = Color3.fromRGB(245,0,0)
- btn3.BackgroundColor3 = Color3.fromRGB(253,98,98)
- btn3.TextColor3 = Color3.fromRGB(0,0,0)
- btn4.BackgroundColor3 = Color3.fromRGB(253,98,98)
- btn4.TextColor3 = Color3.fromRGB(0,0,0)
- text.BackgroundColor3 = Color3.fromRGB(253,98,98)
- text.TextColor3 = Color3.fromRGB(0,0,0)
- text.PlaceholderColor3 = Color3.fromRGB(65,65,65)
- btn2.BackgroundColor3 = Color3.fromRGB(253,98,98)
- btn2.TextColor3 = Color3.fromRGB(0,0,0)
- btn.BackgroundColor3 = Color3.fromRGB(0,0,0)
- screen.Frame.TextLabel.TextColor3 = Color3.fromRGB(0,0,0)
- screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
- frame3.BackgroundColor3 = Color3.fromRGB(245,0,0)
- btnT.BackgroundColor3 = Color3.fromRGB(253,98,98)
- btnT2.BackgroundColor3 = Color3.fromRGB(253,98,98)
- btnT3.BackgroundColor3 = Color3.fromRGB(253,98,98)
- screen.f3.btnT4.BackgroundColor3 = Color3.fromRGB(253,98,98)
- textT.BackgroundColor3 = Color3.fromRGB(253,98,98)
- screen:WaitForChild("f2").BackgroundColor3 = Color3.fromRGB(245,0,0)
- elseif textT.Text == "green" then
- frame.BackgroundColor3 = Color3.fromRGB(50,205,50)
- btn3.BackgroundColor3 = Color3.fromRGB(124,252,0)
- btn3.TextColor3 = Color3.fromRGB(0,0,0)
- btn4.BackgroundColor3 = Color3.fromRGB(124,252,0)
- btn4.TextColor3 = Color3.fromRGB(0,0,0)
- text.BackgroundColor3 = Color3.fromRGB(124,252,0)
- text.TextColor3 = Color3.fromRGB(0,0,0)
- text.PlaceholderColor3 = Color3.fromRGB(65,65,65)
- btn2.BackgroundColor3 = Color3.fromRGB(124,252,0)
- btn2.TextColor3 = Color3.fromRGB(0,0,0)
- btn.BackgroundColor3 = Color3.fromRGB(0,0,0)
- screen.Frame.TextLabel.TextColor3 = Color3.fromRGB(0,0,0)
- screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
- frame3.BackgroundColor3 = Color3.fromRGB(50,205,50)
- btnT.BackgroundColor3 = Color3.fromRGB(124,252,0)
- btnT2.BackgroundColor3 = Color3.fromRGB(124,252,0)
- btnT3.BackgroundColor3 = Color3.fromRGB(124,252,0)
- screen.f3.btnT4.BackgroundColor3 = Color3.fromRGB(124,252,0)
- textT.BackgroundColor3 = Color3.fromRGB(124,252,0)
- screen:WaitForChild("f2").BackgroundColor3 = Color3.fromRGB(50,205,50)
- elseif textT.Text == "purple" then
- frame.BackgroundColor3 = Color3.fromRGB(138,43,226)
- btn3.BackgroundColor3 = Color3.fromRGB(218,112,214)
- btn3.TextColor3 = Color3.fromRGB(0,0,0)
- btn4.BackgroundColor3 = Color3.fromRGB(218,112,214)
- btn4.TextColor3 = Color3.fromRGB(0,0,0)
- text.BackgroundColor3 = Color3.fromRGB(218,112,214)
- text.TextColor3 = Color3.fromRGB(0,0,0)
- text.PlaceholderColor3 = Color3.fromRGB(65,65,65)
- btn2.BackgroundColor3 = Color3.fromRGB(218,112,214)
- btn2.TextColor3 = Color3.fromRGB(0,0,0)
- btn.BackgroundColor3 = Color3.fromRGB(0,0,0)
- screen.Frame.TextLabel.TextColor3 = Color3.fromRGB(0,0,0)
- screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
- frame3.BackgroundColor3 = Color3.fromRGB(138,43,226)
- btnT.BackgroundColor3 = Color3.fromRGB(218,112,214)
- btnT2.BackgroundColor3 = Color3.fromRGB(218,112,214)
- btnT3.BackgroundColor3 = Color3.fromRGB(218,112,214)
- screen.f3.btnT4.BackgroundColor3 = Color3.fromRGB(218,112,214)
- textT.BackgroundColor3 = Color3.fromRGB(218,112,214)
- screen:WaitForChild("f2").BackgroundColor3 = Color3.fromRGB(138,43,226)
- elseif textT.Text == "orange" then
- frame.BackgroundColor3 = Color3.fromRGB(255,69,0)
- btn3.BackgroundColor3 = Color3.fromRGB(255,165,0)
- btn3.TextColor3 = Color3.fromRGB(0,0,0)
- btn4.BackgroundColor3 = Color3.fromRGB(255,165,0)
- btn4.TextColor3 = Color3.fromRGB(0,0,0)
- text.BackgroundColor3 = Color3.fromRGB(255,165,0)
- text.TextColor3 = Color3.fromRGB(0,0,0)
- text.PlaceholderColor3 = Color3.fromRGB(65,65,65)
- btn2.BackgroundColor3 = Color3.fromRGB(255,165,0)
- btn2.TextColor3 = Color3.fromRGB(0,0,0)
- btn.BackgroundColor3 = Color3.fromRGB(0,0,0)
- screen.Frame.TextLabel.TextColor3 = Color3.fromRGB(0,0,0)
- screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
- frame3.BackgroundColor3 = Color3.fromRGB(255,69,0)
- btnT.BackgroundColor3 = Color3.fromRGB(255,165,0)
- btnT2.BackgroundColor3 = Color3.fromRGB(255,165,0)
- btnT3.BackgroundColor3 = Color3.fromRGB(255,165,0)
- screen.f3.btnT4.BackgroundColor3 = Color3.fromRGB(255,165,0)
- textT.BackgroundColor3 = Color3.fromRGB(255,165,0)
- screen:WaitForChild("f2").BackgroundColor3 = Color3.fromRGB(255,69,0)
- elseif textT.Text == "yellow" then
- frame.BackgroundColor3 = Color3.fromRGB(241,249,0)
- btn3.BackgroundColor3 = Color3.fromRGB(234,238,117)
- btn3.TextColor3 = Color3.fromRGB(0,0,0)
- btn4.BackgroundColor3 = Color3.fromRGB(234,238,117)
- btn4.TextColor3 = Color3.fromRGB(0,0,0)
- text.BackgroundColor3 = Color3.fromRGB(234,238,117)
- text.TextColor3 = Color3.fromRGB(0,0,0)
- text.PlaceholderColor3 = Color3.fromRGB(65,65,65)
- btn2.BackgroundColor3 = Color3.fromRGB(234,238,117)
- btn2.TextColor3 = Color3.fromRGB(0,0,0)
- btn.BackgroundColor3 = Color3.fromRGB(0,0,0)
- screen.Frame.TextLabel.TextColor3 = Color3.fromRGB(0,0,0)
- screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
- frame3.BackgroundColor3 = Color3.fromRGB(241,249,0)
- btnT.BackgroundColor3 = Color3.fromRGB(234,238,117)
- btnT2.BackgroundColor3 = Color3.fromRGB(234,238,117)
- btnT3.BackgroundColor3 = Color3.fromRGB(234,238,117)
- screen.f3.btnT4.BackgroundColor3 = Color3.fromRGB(234,238,117)
- textT.BackgroundColor3 = Color3.fromRGB(234,238,117)
- screen:WaitForChild("f2").BackgroundColor3 = Color3.fromRGB(241,249,0)
- elseif textT.Text == "pink" then
- frame.BackgroundColor3 = Color3.fromRGB(255,127,247)
- btn3.BackgroundColor3 = Color3.fromRGB(255,170,249)
- btn3.TextColor3 = Color3.fromRGB(0,0,0)
- btn4.BackgroundColor3 = Color3.fromRGB(255,170,249)
- btn4.TextColor3 = Color3.fromRGB(0,0,0)
- text.BackgroundColor3 = Color3.fromRGB(255,170,249)
- text.TextColor3 = Color3.fromRGB(0,0,0)
- text.PlaceholderColor3 = Color3.fromRGB(65,65,65)
- btn2.BackgroundColor3 = Color3.fromRGB(255,170,249)
- btn2.TextColor3 = Color3.fromRGB(0,0,0)
- btn.BackgroundColor3 = Color3.fromRGB(0,0,0)
- screen.Frame.TextLabel.TextColor3 = Color3.fromRGB(0,0,0)
- screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
- frame3.BackgroundColor3 = Color3.fromRGB(255,127,247)
- btnT.BackgroundColor3 = Color3.fromRGB(255,170,249)
- btnT2.BackgroundColor3 = Color3.fromRGB(255,170,249)
- btnT3.BackgroundColor3 = Color3.fromRGB(255,170,249)
- screen.f3.btnT4.BackgroundColor3 = Color3.fromRGB(255,170,249)
- textT.BackgroundColor3 = Color3.fromRGB(255,170,249)
- screen:WaitForChild("f2").BackgroundColor3 = Color3.fromRGB(255,127,247)
- end
- end
- end)
- local btnT4 = Instance.new("TextButton")
- btnT4.Parent = frame3
- btnT4.Size = UDim2.new(0, 55, 0, 25)
- btnT4.Position = UDim2.new(0, 92, 0, 214)
- btnT4.Text = "Clear"
- btnT4.BackgroundColor3 = Color3.fromRGB(186,85,211)
- btnT4.TextSize = 11
- btnT4.Name = "btnT4"
- btnT4.MouseButton1Click:Connect(function()
- textT.Text = ""
- end)
- end)
- local label = Instance.new("TextLabel")
- label.Parent = frame
- label.Text = "x0y0zkidd's\nadmin"
- label.TextSize = 16
- label.BorderSizePixel = 0
- label.Position = UDim2.new(0, 137, 0, 310)
- local labelP = Instance.new("TextLabel")
- labelP.Parent = frame
- labelP.Text = "Pray for\nTubers93!"
- labelP.TextSize = 16
- labelP.BorderSizePixel = 0
- labelP.Position = UDim2.new(0, 137, 0, 250)
- labelP.Name = "TextLabel2"
- local function script()
- local plr = game:GetService("Players").LocalPlayer
- local hum = plr.Character.Humanoid
- local hrp = plr.Character.HumanoidRootPart
- local uis = game:GetService("UserInputService")
- local rightleg = "Right Leg"
- local screen = Instance.new("ScreenGui")
- screen.Name = "xyz_admin2"
- screen.Parent = plr.PlayerGui
- local frame = Instance.new("Frame")
- frame.Parent = screen
- frame.Size = UDim2.new(0, 270, 0, 350)
- frame.BackgroundColor3 = Color3.fromRGB(255,20,147)
- frame.Position = UDim2.new(0, 1340, 0, 550)
- frame.Active = true
- frame.Selectable = true
- frame.Draggable = true
- local keyt = Instance.new("TextBox")
- keyt.Parent = frame
- keyt.Size = UDim2.new(0, 105, 0, 45)
- keyt.Position = UDim2.new(0, 85, 0, 174)
- keyt.Text = ""
- keyt.TextColor3 = Color3.fromRGB(255,255,255)
- keyt.TextSize = 10
- keyt.PlaceholderText = ""
- keyt.ClearTextOnFocus = false
- keyt.MultiLine = true
- keyt.Font = Enum.Font.GothamBold
- keyt.PlaceholderColor3 = Color3.fromRGB(65,65,65)
- keyt.BackgroundColor3 = Color3.fromRGB(186,85,211)
- keyt.BackgroundTransparency = 1
- keyt.TextXAlignment = "Left"
- keyt.TextYAlignment = "Top"
- local exe = Instance.new("ImageLabel")
- exe.Parent = frame
- exe.Size = keyt.Size
- exe.Position = keyt.Position
- exe.BackgroundTransparency = 1
- exe.Image = "rbxassetid://89760411485169"
- exe.ZIndex = 1
- keyt.ZIndex = 2
- local btn = Instance.new("TextButton")
- btn.Parent = frame
- btn.Size = UDim2.new(0, 20, 0, 19)
- btn.Position = UDim2.new(0, 245, 0, 4)
- btn.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- btn.Text = "X"
- btn.TextSize = 12
- btn.TextColor3 = Color3.fromRGB(255,0,0)
- btn.MouseButton1Click:Connect(function()
- screen:Destroy()
- end)
- local text = Instance.new("TextBox")
- text.Parent = frame
- text.Size = UDim2.new(0, 105, 0, 45)
- text.Position = UDim2.new(0, 85, 0, 54)
- text.Text = ""
- text.TextSize = 12
- text.PlaceholderText = "Command"
- text.PlaceholderColor3 = Color3.fromRGB(65,65,65)
- text.ClearTextOnFocus = false
- text.BackgroundColor3 = Color3.fromRGB(186,85,211)
- text.FocusLost:Connect(function(e)
- if e then
- if text.Text:sub(1, 2) == "to" then
- local args = text.Text:sub(4)
- if args ~= "" then
- for _, oth in pairs(game:GetService("Players"):GetPlayers()) do
- if oth.Name:lower():find(args:lower()) or oth.DisplayName:lower():find(args:lower()) then
- hrp.CFrame = oth.Character.HumanoidRootPart.CFrame
- end
- end
- end
- elseif text.Text:sub(1, 6) == "follow" then
- local args2 = text.Text:sub(8)
- if args ~= "" then
- for _, oth2 in pairs(game:GetService("Players"):GetPlayers()) do
- if oth2.Name:lower():find(args2:lower()) or oth2.DisplayName:lower():find(args2:lower()) then
- local connection
- connection = game:GetService("RunService").RenderStepped:Connect(function()
- hum:MoveTo(oth2.Character.HumanoidRootPart.Position)
- if text.Text == "unfollow" then
- connection:Disconnect()
- wait()
- hum:MoveTo(hrp.Position)
- end
- end)
- end
- end
- end
- elseif text.Text:sub(1, 7) == "headsit" then
- local args3 = text.Text:sub(9)
- if args3 ~= "" then
- for _, oth3 in pairs(game:GetService("Players"):GetPlayers()) do
- if oth3.Name:lower():find(args3:lower()) or oth3.DisplayName:lower():find(args3:lower()) then
- hum.Sit = true
- wait()
- local con2
- con2 = game:GetService("RunService").RenderStepped:Connect(function()
- hrp.CFrame = oth3.Character.Head.CFrame * CFrame.Angles(math.pi * 0, 1, 0)
- uis.InputBegan:Connect(function(i2, g2)
- if i2.KeyCode == Enum.KeyCode.Space and not g2 then
- hum.Sit = false
- wait()
- con2:Disconnect()
- end
- end)
- end)
- end
- end
- end
- elseif text.Text:sub(1, 8) == "waypoint" then
- local args4 = text.Text:sub(10)
- if args4 ~= "" then
- local p = Instance.new("Part")
- p.Parent = plr.Character
- p.Name = args4
- p.Transparency = 0.9
- p.Anchored = true
- p.CanCollide = false
- p.BrickColor = BrickColor.new("Pink")
- if plr.Character:FindFirstChild("RightFoot") then
- p.CFrame = plr.Character.RightFoot.CFrame
- else
- p.CFrame = plr.Character[rightleg].CFrame
- end
- end
- elseif text.Text:sub(1, 5) == "wayrm" then
- local args5 = text.Text:sub(7)
- if args5 ~= "" then
- plr.Character[args5]:Destroy()
- end
- elseif text.Text:sub(1, 5) == "tpway" then
- local args6 = text.Text:sub(7)
- if args6 ~= "" then
- hrp.CFrame = plr.Character[args6].CFrame
- end
- elseif text.Text:sub(1, 4) == "view" then
- local args7 = text.Text:sub(6)
- if args7 ~= "" then
- for _, oth4 in pairs(game:GetService("Players"):GetPlayers()) do
- if oth4.Name:lower():find(args7:lower()) or oth4.DisplayName:lower():find(args7:lower()) then
- game.Workspace.Camera.CameraSubject = oth4.Character
- end
- end
- end
- elseif text.Text == "unview" then
- game.Workspace.Camera.CameraSubject = plr.Character
- elseif text.Text:sub(1, 5) == "speed" then
- local args8 = text.Text:sub(7)
- if args8 ~= "" then
- hum.WalkSpeed = args8
- end
- elseif text.Text:sub(1, 4) == "jump" then
- local args9 = text.Text:sub(6)
- if args9 ~= "" then
- hum.JumpPower = args9
- end
- elseif text.Text:sub(1, 7) == "gravity" then
- local grav = text.Text:sub(9)
- if grav ~= "" then
- game.Workspace.Gravity = grav
- end
- elseif text.Text:sub(1,3) == "say" then
- local say = text.Text:sub(5)
- if say ~= "" then
- if game:FindFirstChild("TextChatService") then
- game.TextChatService.TextChannels.RBXGeneral:SendAsync(say)
- else
- game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(say, "ALL")
- end
- end
- elseif text.Text == "grabtools" then
- local toolcon
- toolcon = game:GetService("RunService").RenderStepped:Connect(function()
- for _, tool in pairs(game.Workspace:GetChildren()) do
- if tool:IsA("Tool") then
- tool.Parent = plr.Backpack
- end
- end
- end)
- elseif text.Text == "ungrabtools" then
- toolcon:Disconnect()
- elseif text.Text == "droptools" then
- for _, drop in pairs(plr.Backpack:GetChildren()) do
- if drop:IsA("Tool") then
- drop.Parent = game.Workspace
- end
- end
- elseif text.Text == "lay" then
- hum.Sit = true
- task.wait(0.1)
- hum.RootPart.CFrame = hum.RootPart.CFrame * CFrame.Angles(math.pi * 0.5, 0, 0)
- for _, nigger in pairs(hum:GetPlayingAnimationTracks()) do
- nigger:Stop()
- end
- elseif text.Text == "sit" then
- hum.Sit = true
- elseif text.Text == "reset" then
- hum.Health = 0
- elseif text.Text == "rejoin" then
- local p = game:GetService("Players"):GetPlayers()
- if #p <= 1 then
- p.LocalPlayer:Kick("Rejoin")
- wait()
- game:GetService("TeleportService"):Teleport(game.PlaceId, p.LocalPlayer)
- else
- game:GetService("TeleportService"):TeleportToPlaceInstance(game.PlaceId, game.JobId, p.LocalPlayer)
- end
- elseif text.Text:sub(1, 7) == "maxzoom" then
- local mz = text.Text:sub(9)
- if mz ~= "" then
- plr.CameraMaxZoomDistance = mz
- end
- elseif text.Text:sub(1, 7) == "minzoom" then
- local minz = text.Text:sub(9)
- if minz ~= "" then
- plr.CameraMinZoomDistance = minz
- end
- elseif text.Text == "clicktp" then
- game:GetService("UserInputService").InputBegan:Connect(function(input, gay)
- if gay then return end
- local ctrl = game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl)
- if input.UserInputType == Enum.UserInputType.MouseButton1 then
- if ctrl then
- mouse = game:GetService("Players").LocalPlayer:GetMouse()
- local tp = mouse.Hit+Vector3.new(0,2.5,0)
- tp = CFrame.new(tp.X,tp.Y,tp.Z)
- game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = tp
- else
- print("Only m1 :(")
- end
- end
- end)
- elseif text.Text == "infjump" then
- game:GetService("UserInputService").InputBegan:Connect(function(i,g)
- if i.KeyCode == Enum.KeyCode.Space and not g then
- plr.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
- end
- end)
- elseif text.Text == "jump" then
- plr.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
- end
- end
- end)
- local btn2 = Instance.new("TextButton")
- btn2.Parent = frame
- btn2.Size = UDim2.new(0, 105, 0, 45)
- btn2.Position = UDim2.new(0, 85, 0, 114)
- btn2.Text = "Clear"
- btn2.TextSize = 11
- btn2.BackgroundColor3 = Color3.fromRGB(186,85,211)
- btn2.MouseButton1Click:Connect(function()
- text.Text = ""
- end)
- uis.InputBegan:Connect(function(i, g)
- if i.KeyCode == Enum.KeyCode.Semicolon and not g then
- text:CaptureFocus()
- wait(0)
- text.Text = ""
- end
- end)
- local btn3 = Instance.new("TextButton")
- btn3.Parent = frame
- btn3.Size = UDim2.new(0, 75, 0, 15)
- btn3.Position = UDim2.new(0, 34, 0, 16)
- btn3.Text = "Command list"
- btn3.BackgroundColor3 = Color3.fromRGB(186,85,211)
- btn3.MouseButton1Click:Connect(function()
- local frame2 = Instance.new("Frame")
- frame2.Parent = screen
- frame2.Size = UDim2.new(0, 310, 0, 420)
- frame2.BackgroundColor3 = Color3.fromRGB(255,20,147)
- frame2.Position = UDim2.new(0, 1040, 0, 550)
- frame2.Name = "f2"
- frame2.Active = true
- frame2.Selectable = true
- frame2.Draggable = true
- local label2 = Instance.new("TextLabel")
- label2.Parent = frame2
- label2.BorderSizePixel = 0
- label2.TextSize = 11
- label2.Text = "to <player> //tp you to player\nfollow<player> //follows player\nheadsit <player> //sits to player's head\nwaypoint <name> //creates a waypoint\nwayrm <name> //removes waypoint by name\ntpway <name> //tp you to wyapoint by name\nview <player> spectate the player\nunview //stop spectating\nspeed <num> //changes ur speed\njumppower <num> //changes ur jumppower\ngravity <num> //changes ur gravity\nsay <msg> says the msg in chat\ngrabtools //grabs all the tools\nungrabtools //stop grabbingtools\ndroptools //drops all the tools\nlay //makes you lay\nsit //makes you sit\nreset //reset you\ninfjump // inf jumps\njump // jumps"
- label2.Position = UDim2.new(0, 155, 0, 220)
- local labelC = Instance.new("TextLabel")
- labelC.Parent = frame2
- labelC.BorderSizePixel = 0
- labelC.TextSize = 14
- labelC.Text = "Command list"
- labelC.Position = UDim2.new(0, 150, 0, 15)
- local btnX = Instance.new("TextButton")
- btnX.Parent = frame2
- btnX.Size = UDim2.new(0, 20, 0, 19)
- btnX.Position = UDim2.new(0, 284, 0, 4)
- btnX.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- btnX.Text = "X"
- btnX.TextSize = 12
- btnX.TextColor3 = Color3.fromRGB(255,0,0)
- btnX.MouseButton1Click:Connect(function()
- frame2:Destroy()
- end)
- end)
- local btn4 = Instance.new("TextButton")
- btn4.Parent = frame
- btn4.Size = UDim2.new(0, 75, 0, 15)
- btn4.Position = UDim2.new(0, 162, 0, 16)
- btn4.Text = "Themes"
- btn4.BackgroundColor3 = Color3.fromRGB(186,85,211)
- btn4.MouseButton1Click:Connect(function()
- local frame3 = Instance.new("Frame")
- frame3.Parent = screen
- frame3.Size = UDim2.new(0, 235, 0, 250)
- frame3.BackgroundColor3 = Color3.fromRGB(255,20,147)
- frame3.Position = UDim2.new(0, 1340, 0, 250)
- frame3.Name = "f3"
- frame3.Active = true
- frame3.Selectable = true
- frame3.Draggable = true
- local btnX2 = Instance.new("TextButton")
- btnX2.Parent = frame3
- btnX2.Size = UDim2.new(0, 20, 0, 19)
- btnX2.Position = UDim2.new(0, 210, 0, 4)
- btnX2.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- btnX2.Text = "X"
- btnX2.TextSize = 12
- btnX2.TextColor3 = Color3.fromRGB(255,0,0)
- btnX2.MouseButton1Click:Connect(function()
- frame3:Destroy()
- end)
- local btnT = Instance.new("TextButton")
- btnT.Parent = frame3
- btnT.Size = UDim2.new(0, 55, 0, 25)
- btnT.Position = UDim2.new(0, 92, 0, 35)
- btnT.Text = "Light"
- btnT.BackgroundColor3 = Color3.fromRGB(186,85,211)
- btnT.TextSize = 11
- btnT.MouseButton1Click:Connect(function()
- frame.BackgroundColor3 = Color3.fromRGB(255,255,255)
- btn3.BackgroundColor3 = Color3.fromRGB(105,105,105)
- btn3.TextColor3 = Color3.fromRGB(255,255,255)
- btn4.BackgroundColor3 = Color3.fromRGB(105,105,105)
- btn4.TextColor3 = Color3.fromRGB(255,255,255)
- text.BackgroundColor3 = Color3.fromRGB(105,105,105)
- text.TextColor3 = Color3.fromRGB(255,255,255)
- text.PlaceholderColor3 = Color3.fromRGB(255,255,255)
- btn2.BackgroundColor3 = Color3.fromRGB(105,105,105)
- btn2.TextColor3 = Color3.fromRGB(255,255,255)
- screen.Frame.TextLabel.TextColor3 = Color3.fromRGB(0,0,0)
- screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
- frame3.BackgroundColor3 = Color3.fromRGB(255,255,255)
- btnT.BackgroundColor3 = Color3.fromRGB(105,105,105)
- screen.f3.btnT2.BackgroundColor3 = Color3.fromRGB(105,105,105)
- screen.f3.btnT3.BackgroundColor3 = Color3.fromRGB(105,105,105)
- screen.f3.btnT4.BackgroundColor3 = Color3.fromRGB(105,105,105)
- screen.f3.textT.BackgroundColor3 = Color3.fromRGB(105,105,105)
- btnT.TextColor3 = Color3.fromRGB(255,255,255)
- screen.f3.btnT2.TextColor3 = Color3.fromRGB(255,255,255)
- screen.f3.btnT3.TextColor3 = Color3.fromRGB(255,255,255)
- screen.f3.btnT4.TextColor3 = Color3.fromRGB(255,255,255)
- screen.f3.textT.TextColor3 = Color3.fromRGB(255,255,255)
- screen.f3.labelT.TextColor3 = Color3.fromRGB(0,0,0)
- screen.f3.labelT2.TextColor3 = Color3.fromRGB(0,0,0)
- screen:WaitForChild("f2").BackgroundColor3 = Color3.fromRGB(255,255,255)
- end)
- local btnT2 = Instance.new("TextButton")
- btnT2.Parent = frame3
- btnT2.Size = UDim2.new(0, 55, 0, 25)
- btnT2.Position = UDim2.new(0, 92, 0, 85)
- btnT2.Text = "Dark"
- btnT2.BackgroundColor3 = Color3.fromRGB(186,85,211)
- btnT2.TextSize = 11
- btnT2.Name = "btnT2"
- btnT2.MouseButton1Click:Connect(function()
- frame.BackgroundColor3 = Color3.fromRGB(65,65,65)
- btn3.BackgroundColor3 = Color3.fromRGB(105,105,105)
- btn3.TextColor3 = Color3.fromRGB(255,255,255)
- btn4.BackgroundColor3 = Color3.fromRGB(105,105,105)
- btn4.TextColor3 = Color3.fromRGB(255,255,255)
- text.BackgroundColor3 = Color3.fromRGB(105,105,105)
- text.TextColor3 = Color3.fromRGB(255,255,255)
- text.PlaceholderColor3 = Color3.fromRGB(255,255,255)
- btn2.BackgroundColor3 = Color3.fromRGB(105,105,105)
- btn2.TextColor3 = Color3.fromRGB(255,255,255)
- btn.BackgroundColor3 = Color3.fromRGB(255,255,255)
- screen.Frame.TextLabel.TextColor3 = Color3.fromRGB(255,255,255)
- screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(255,255,255)
- frame3.BackgroundColor3 = Color3.fromRGB(65,65,65)
- btnT.BackgroundColor3 = Color3.fromRGB(105,105,105)
- btnT2.BackgroundColor3 = Color3.fromRGB(105,105,105)
- screen.f3.btnT3.BackgroundColor3 = Color3.fromRGB(105,105,105)
- screen.f3.btnT4.BackgroundColor3 = Color3.fromRGB(105,105,105)
- screen.f3.textT.BackgroundColor3 = Color3.fromRGB(105,105,105)
- btnT.TextColor3 = Color3.fromRGB(255,255,255)
- btnT2.TextColor3 = Color3.fromRGB(255,255,255)
- screen.f3.btnT3.TextColor3 = Color3.fromRGB(255,255,255)
- screen.f3.btnT4.TextColor3 = Color3.fromRGB(255,255,255)
- screen.f3.textT.TextColor3 = Color3.fromRGB(255,255,255)
- screen.f3.labelT.TextColor3 = Color3.fromRGB(255,255,255)
- screen.f3.labelT2.TextColor3 = Color3.fromRGB(255,255,255)
- screen:WaitForChild("f2").BackgroundColor3 = Color3.fromRGB(65,65,65)
- end)
- local btnT3 = Instance.new("TextButton")
- btnT3.Parent = frame3
- btnT3.Size = UDim2.new(0, 55, 0, 25)
- btnT3.Position = UDim2.new(0, 92, 0, 135)
- btnT3.Text = "Basic"
- btnT3.BackgroundColor3 = Color3.fromRGB(186,85,211)
- btnT3.TextSize = 11
- btnT3.Name = "btnT3"
- btnT3.MouseButton1Click:Connect(function()
- frame.BackgroundColor3 = Color3.fromRGB(255,20,147)
- btn3.BackgroundColor3 = Color3.fromRGB(186,85,211)
- btn3.TextColor3 = Color3.fromRGB(0,0,0)
- btn4.BackgroundColor3 = Color3.fromRGB(186,85,211)
- btn4.TextColor3 = Color3.fromRGB(0,0,0)
- text.BackgroundColor3 = Color3.fromRGB(186,85,211)
- text.TextColor3 = Color3.fromRGB(0,0,0)
- text.PlaceholderColor3 = Color3.fromRGB(65,65,65)
- btn2.BackgroundColor3 = Color3.fromRGB(186,85,211)
- btn2.TextColor3 = Color3.fromRGB(0,0,0)
- btn.BackgroundColor3 = Color3.fromRGB(0,0,0)
- screen.Frame.TextLabel.TextColor3 = Color3.fromRGB(0,0,0)
- screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
- frame3.BackgroundColor3 = Color3.fromRGB(255,20,147)
- btnT.BackgroundColor3 = Color3.fromRGB(186,85,211)
- btnT2.BackgroundColor3 = Color3.fromRGB(186,85,211)
- btnT3.BackgroundColor3 = Color3.fromRGB(186,85,211)
- screen.f3.btnT4.BackgroundColor3 = Color3.fromRGB(186,85,211)
- screen.f3.textT.BackgroundColor3 = Color3.fromRGB(186,85,211)
- screen:WaitForChild("f2").BackgroundColor3 = Color3.fromRGB(255,20,147)
- end)
- local labelT = Instance.new("TextLabel")
- labelT.Parent = frame3
- labelT.BorderSizePixel = 0
- labelT.TextSize = 14
- labelT.Text = "Themes"
- labelT.Position = UDim2.new(0, 120, 0, 15)
- labelT.Name = "labelT"
- local textT = Instance.new("TextBox")
- textT.Parent = frame3
- textT.Size = UDim2.new(0, 85, 0, 25)
- textT.Position = UDim2.new(0, 78, 0, 174)
- textT.Text = ""
- textT.PlaceholderText = "Own"
- textT.TextSize = 11
- textT.PlaceholderColor3 = Color3.fromRGB(65,65,65)
- textT.ClearTextOnFocus = false
- textT.BackgroundColor3 = Color3.fromRGB(186,85,211)
- textT.Name = "textT"
- local labelT2 = Instance.new("TextLabel")
- labelT2.Parent = frame3
- labelT2.BorderSizePixel = 0
- labelT2.Text = "Example:\nblue"
- labelT2.TextSize = 10
- labelT2.Position = UDim2.new(0, 200, 0, 186)
- labelT2.Name = "labelT2"
- textT.FocusLost:Connect(function(ent)
- if ent then
- if textT.Text == "blue" then
- frame.BackgroundColor3 = Color3.fromRGB(0,0,255)
- btn3.BackgroundColor3 = Color3.fromRGB(0,191,255)
- btn3.TextColor3 = Color3.fromRGB(0,0,0)
- btn4.BackgroundColor3 = Color3.fromRGB(0,191,255)
- btn4.TextColor3 = Color3.fromRGB(0,0,0)
- text.BackgroundColor3 = Color3.fromRGB(0,191,255)
- text.TextColor3 = Color3.fromRGB(0,0,0)
- text.PlaceholderColor3 = Color3.fromRGB(65,65,65)
- btn2.BackgroundColor3 = Color3.fromRGB(0,191,255)
- btn2.TextColor3 = Color3.fromRGB(0,0,0)
- btn.BackgroundColor3 = Color3.fromRGB(0,0,0)
- screen.Frame.TextLabel.TextColor3 = Color3.fromRGB(0,0,0)
- screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
- frame3.BackgroundColor3 = Color3.fromRGB(0,0,255)
- btnT.BackgroundColor3 = Color3.fromRGB(0,191,255)
- btnT2.BackgroundColor3 = Color3.fromRGB(0,191,255)
- btnT3.BackgroundColor3 = Color3.fromRGB(0,191,255)
- screen.f3.btnT4.BackgroundColor3 = Color3.fromRGB(0,191,255)
- textT.BackgroundColor3 = Color3.fromRGB(0,191,255)
- screen:WaitForChild("f2").BackgroundColor3 = Color3.fromRGB(0,0,255)
- elseif textT.Text == "red" then
- frame.BackgroundColor3 = Color3.fromRGB(245,0,0)
- btn3.BackgroundColor3 = Color3.fromRGB(253,98,98)
- btn3.TextColor3 = Color3.fromRGB(0,0,0)
- btn4.BackgroundColor3 = Color3.fromRGB(253,98,98)
- btn4.TextColor3 = Color3.fromRGB(0,0,0)
- text.BackgroundColor3 = Color3.fromRGB(253,98,98)
- text.TextColor3 = Color3.fromRGB(0,0,0)
- text.PlaceholderColor3 = Color3.fromRGB(65,65,65)
- btn2.BackgroundColor3 = Color3.fromRGB(253,98,98)
- btn2.TextColor3 = Color3.fromRGB(0,0,0)
- btn.BackgroundColor3 = Color3.fromRGB(0,0,0)
- screen.Frame.TextLabel.TextColor3 = Color3.fromRGB(0,0,0)
- screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
- frame3.BackgroundColor3 = Color3.fromRGB(245,0,0)
- btnT.BackgroundColor3 = Color3.fromRGB(253,98,98)
- btnT2.BackgroundColor3 = Color3.fromRGB(253,98,98)
- btnT3.BackgroundColor3 = Color3.fromRGB(253,98,98)
- screen.f3.btnT4.BackgroundColor3 = Color3.fromRGB(253,98,98)
- textT.BackgroundColor3 = Color3.fromRGB(253,98,98)
- screen:WaitForChild("f2").BackgroundColor3 = Color3.fromRGB(245,0,0)
- elseif textT.Text == "green" then
- frame.BackgroundColor3 = Color3.fromRGB(50,205,50)
- btn3.BackgroundColor3 = Color3.fromRGB(124,252,0)
- btn3.TextColor3 = Color3.fromRGB(0,0,0)
- btn4.BackgroundColor3 = Color3.fromRGB(124,252,0)
- btn4.TextColor3 = Color3.fromRGB(0,0,0)
- text.BackgroundColor3 = Color3.fromRGB(124,252,0)
- text.TextColor3 = Color3.fromRGB(0,0,0)
- text.PlaceholderColor3 = Color3.fromRGB(65,65,65)
- btn2.BackgroundColor3 = Color3.fromRGB(124,252,0)
- btn2.TextColor3 = Color3.fromRGB(0,0,0)
- btn.BackgroundColor3 = Color3.fromRGB(0,0,0)
- screen.Frame.TextLabel.TextColor3 = Color3.fromRGB(0,0,0)
- screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
- frame3.BackgroundColor3 = Color3.fromRGB(50,205,50)
- btnT.BackgroundColor3 = Color3.fromRGB(124,252,0)
- btnT2.BackgroundColor3 = Color3.fromRGB(124,252,0)
- btnT3.BackgroundColor3 = Color3.fromRGB(124,252,0)
- screen.f3.btnT4.BackgroundColor3 = Color3.fromRGB(124,252,0)
- textT.BackgroundColor3 = Color3.fromRGB(124,252,0)
- screen:WaitForChild("f2").BackgroundColor3 = Color3.fromRGB(50,205,50)
- elseif textT.Text == "purple" then
- frame.BackgroundColor3 = Color3.fromRGB(138,43,226)
- btn3.BackgroundColor3 = Color3.fromRGB(218,112,214)
- btn3.TextColor3 = Color3.fromRGB(0,0,0)
- btn4.BackgroundColor3 = Color3.fromRGB(218,112,214)
- btn4.TextColor3 = Color3.fromRGB(0,0,0)
- text.BackgroundColor3 = Color3.fromRGB(218,112,214)
- text.TextColor3 = Color3.fromRGB(0,0,0)
- text.PlaceholderColor3 = Color3.fromRGB(65,65,65)
- btn2.BackgroundColor3 = Color3.fromRGB(218,112,214)
- btn2.TextColor3 = Color3.fromRGB(0,0,0)
- btn.BackgroundColor3 = Color3.fromRGB(0,0,0)
- screen.Frame.TextLabel.TextColor3 = Color3.fromRGB(0,0,0)
- screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
- frame3.BackgroundColor3 = Color3.fromRGB(138,43,226)
- btnT.BackgroundColor3 = Color3.fromRGB(218,112,214)
- btnT2.BackgroundColor3 = Color3.fromRGB(218,112,214)
- btnT3.BackgroundColor3 = Color3.fromRGB(218,112,214)
- screen.f3.btnT4.BackgroundColor3 = Color3.fromRGB(218,112,214)
- textT.BackgroundColor3 = Color3.fromRGB(218,112,214)
- screen:WaitForChild("f2").BackgroundColor3 = Color3.fromRGB(138,43,226)
- elseif textT.Text == "orange" then
- frame.BackgroundColor3 = Color3.fromRGB(255,69,0)
- btn3.BackgroundColor3 = Color3.fromRGB(255,165,0)
- btn3.TextColor3 = Color3.fromRGB(0,0,0)
- btn4.BackgroundColor3 = Color3.fromRGB(255,165,0)
- btn4.TextColor3 = Color3.fromRGB(0,0,0)
- text.BackgroundColor3 = Color3.fromRGB(255,165,0)
- text.TextColor3 = Color3.fromRGB(0,0,0)
- text.PlaceholderColor3 = Color3.fromRGB(65,65,65)
- btn2.BackgroundColor3 = Color3.fromRGB(255,165,0)
- btn2.TextColor3 = Color3.fromRGB(0,0,0)
- btn.BackgroundColor3 = Color3.fromRGB(0,0,0)
- screen.Frame.TextLabel.TextColor3 = Color3.fromRGB(0,0,0)
- screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
- frame3.BackgroundColor3 = Color3.fromRGB(255,69,0)
- btnT.BackgroundColor3 = Color3.fromRGB(255,165,0)
- btnT2.BackgroundColor3 = Color3.fromRGB(255,165,0)
- btnT3.BackgroundColor3 = Color3.fromRGB(255,165,0)
- screen.f3.btnT4.BackgroundColor3 = Color3.fromRGB(255,165,0)
- textT.BackgroundColor3 = Color3.fromRGB(255,165,0)
- screen:WaitForChild("f2").BackgroundColor3 = Color3.fromRGB(255,69,0)
- elseif textT.Text == "yellow" then
- frame.BackgroundColor3 = Color3.fromRGB(241,249,0)
- btn3.BackgroundColor3 = Color3.fromRGB(234,238,117)
- btn3.TextColor3 = Color3.fromRGB(0,0,0)
- btn4.BackgroundColor3 = Color3.fromRGB(234,238,117)
- btn4.TextColor3 = Color3.fromRGB(0,0,0)
- text.BackgroundColor3 = Color3.fromRGB(234,238,117)
- text.TextColor3 = Color3.fromRGB(0,0,0)
- text.PlaceholderColor3 = Color3.fromRGB(65,65,65)
- btn2.BackgroundColor3 = Color3.fromRGB(234,238,117)
- btn2.TextColor3 = Color3.fromRGB(0,0,0)
- btn.BackgroundColor3 = Color3.fromRGB(0,0,0)
- screen.Frame.TextLabel.TextColor3 = Color3.fromRGB(0,0,0)
- screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
- frame3.BackgroundColor3 = Color3.fromRGB(241,249,0)
- btnT.BackgroundColor3 = Color3.fromRGB(234,238,117)
- btnT2.BackgroundColor3 = Color3.fromRGB(234,238,117)
- btnT3.BackgroundColor3 = Color3.fromRGB(234,238,117)
- screen.f3.btnT4.BackgroundColor3 = Color3.fromRGB(234,238,117)
- textT.BackgroundColor3 = Color3.fromRGB(234,238,117)
- screen:WaitForChild("f2").BackgroundColor3 = Color3.fromRGB(241,249,0)
- elseif textT.Text == "pink" then
- frame.BackgroundColor3 = Color3.fromRGB(255,127,247)
- btn3.BackgroundColor3 = Color3.fromRGB(255,170,249)
- btn3.TextColor3 = Color3.fromRGB(0,0,0)
- btn4.BackgroundColor3 = Color3.fromRGB(255,170,249)
- btn4.TextColor3 = Color3.fromRGB(0,0,0)
- text.BackgroundColor3 = Color3.fromRGB(255,170,249)
- text.TextColor3 = Color3.fromRGB(0,0,0)
- text.PlaceholderColor3 = Color3.fromRGB(65,65,65)
- btn2.BackgroundColor3 = Color3.fromRGB(255,170,249)
- btn2.TextColor3 = Color3.fromRGB(0,0,0)
- btn.BackgroundColor3 = Color3.fromRGB(0,0,0)
- screen.Frame.TextLabel.TextColor3 = Color3.fromRGB(0,0,0)
- screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
- frame3.BackgroundColor3 = Color3.fromRGB(255,127,247)
- btnT.BackgroundColor3 = Color3.fromRGB(255,170,249)
- btnT2.BackgroundColor3 = Color3.fromRGB(255,170,249)
- btnT3.BackgroundColor3 = Color3.fromRGB(255,170,249)
- screen.f3.btnT4.BackgroundColor3 = Color3.fromRGB(255,170,249)
- textT.BackgroundColor3 = Color3.fromRGB(255,170,249)
- screen:WaitForChild("f2").BackgroundColor3 = Color3.fromRGB(255,127,247)
- end
- end
- end)
- local btnT4 = Instance.new("TextButton")
- btnT4.Parent = frame3
- btnT4.Size = UDim2.new(0, 55, 0, 25)
- btnT4.Position = UDim2.new(0, 92, 0, 214)
- btnT4.Text = "Clear"
- btnT4.BackgroundColor3 = Color3.fromRGB(186,85,211)
- btnT4.TextSize = 11
- btnT4.Name = "btnT4"
- btnT4.MouseButton1Click:Connect(function()
- textT.Text = ""
- end)
- end)
- local label = Instance.new("TextLabel")
- label.Parent = frame
- label.Text = "x0y0zkidd's\nadmin"
- label.TextSize = 16
- label.BorderSizePixel = 0
- label.Position = UDim2.new(0, 137, 0, 310)
- local labelP = Instance.new("TextLabel")
- labelP.Parent = frame
- labelP.Text = "Pray for\nTubers93!"
- labelP.TextSize = 16
- labelP.BorderSizePixel = 0
- labelP.Position = UDim2.new(0, 137, 0, 250)
- labelP.Name = "TextLabel2"
- end
- plr.CharacterAdded:Connect(function()
- task.wait(0.5)
- script()
- end)
Add Comment
Please, Sign In to add comment