justneed

x0y0zkidd's admin

Nov 30th, 2024 (edited)
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 69.37 KB | Gaming | 0 0
  1. --x0y0zkidd admin script
  2.  
  3. local plr      = game:GetService("Players").LocalPlayer
  4. local hum      = plr.Character.Humanoid
  5. local hrp      = plr.Character.HumanoidRootPart
  6. local uis      = game:GetService("UserInputService")
  7. local rightleg = "Right Leg"
  8.  
  9. local screen  = Instance.new("ScreenGui")
  10. screen.Name   = "xyz_admin"
  11. screen.Parent = plr.PlayerGui
  12.  
  13. local frame            = Instance.new("Frame")
  14. frame.Parent           = screen
  15. frame.Size             = UDim2.new(0, 270, 0, 350)
  16. frame.BackgroundColor3 = Color3.fromRGB(255,20,147)
  17. frame.Position         = UDim2.new(0, 1340, 0, 550)
  18.  
  19. frame.Active     = true
  20. frame.Selectable = true
  21. frame.Draggable  = true
  22.  
  23. local keyt                  = Instance.new("TextBox")
  24. keyt.Parent                 = frame
  25. keyt.Size                   = UDim2.new(0, 105, 0, 45)
  26. keyt.Position               = UDim2.new(0, 85, 0, 174)
  27. keyt.Text                   = ""
  28. keyt.TextColor3             = Color3.fromRGB(255,255,255)
  29. keyt.TextSize               = 10
  30. keyt.PlaceholderText        = ""
  31. keyt.ClearTextOnFocus       = false
  32. keyt.MultiLine              = true
  33. keyt.Font                   = Enum.Font.GothamBold
  34. keyt.PlaceholderColor3      = Color3.fromRGB(65,65,65)
  35. keyt.BackgroundColor3       = Color3.fromRGB(186,85,211)
  36. keyt.BackgroundTransparency = 1
  37. keyt.TextXAlignment         = "Left"
  38. keyt.TextYAlignment         = "Top"
  39.  
  40. local exe                  = Instance.new("ImageLabel")
  41. exe.Parent                 = frame
  42. exe.Size                   = keyt.Size
  43. exe.Position               = keyt.Position
  44. exe.BackgroundTransparency = 1
  45. exe.Image                  = "rbxassetid://89760411485169"
  46. exe.ZIndex                 = 1
  47. keyt.ZIndex                = 2
  48.  
  49. local btn            = Instance.new("TextButton")
  50. btn.Parent           = frame
  51. btn.Size             = UDim2.new(0, 20, 0, 19)
  52. btn.Position         = UDim2.new(0, 245, 0, 4)
  53. btn.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  54. btn.Text             = "X"
  55. btn.TextSize         = 12
  56. btn.TextColor3       = Color3.fromRGB(255,0,0)
  57.  
  58. btn.MouseButton1Click:Connect(function()
  59.     screen:Destroy()
  60. end)
  61.  
  62. local text             = Instance.new("TextBox")
  63. text.Parent            = frame
  64. text.Size              = UDim2.new(0, 105, 0, 45)
  65. text.Position          = UDim2.new(0, 85, 0, 54)
  66. text.Text              = ""
  67. text.TextSize          = 12
  68. text.PlaceholderText   = "Command"
  69. text.PlaceholderColor3 = Color3.fromRGB(65,65,65)
  70. text.ClearTextOnFocus  = false
  71. text.BackgroundColor3  = Color3.fromRGB(186,85,211)
  72.  
  73. text.FocusLost:Connect(function(e)
  74.     if e then
  75.         if text.Text:sub(1, 2) == "to" then
  76.             local args = text.Text:sub(4)
  77.             if args ~= "" then
  78.                 for _, oth in pairs(game:GetService("Players"):GetPlayers()) do
  79.                     if oth.Name:lower():find(args:lower()) or oth.DisplayName:lower():find(args:lower()) then
  80.                         hrp.CFrame = oth.Character.HumanoidRootPart.CFrame
  81.                     end
  82.                 end
  83.             end
  84.         elseif text.Text:sub(1, 6) == "follow" then
  85.             local args2 = text.Text:sub(8)
  86.             if args ~= "" then
  87.                 for _, oth2 in pairs(game:GetService("Players"):GetPlayers()) do
  88.                     if oth2.Name:lower():find(args2:lower()) or oth2.DisplayName:lower():find(args2:lower()) then
  89.                         local connection
  90.                         connection = game:GetService("RunService").RenderStepped:Connect(function()
  91.                             hum:MoveTo(oth2.Character.HumanoidRootPart.Position)
  92.                             if text.Text == "unfollow" then
  93.                                 connection:Disconnect()
  94.                                 wait()
  95.                                 hum:MoveTo(hrp.Position)
  96.                             end
  97.                         end)
  98.                     end
  99.                 end
  100.             end
  101.         elseif text.Text:sub(1, 7) == "headsit" then
  102.             local args3 = text.Text:sub(9)
  103.             if args3 ~= "" then
  104.                 for _, oth3 in pairs(game:GetService("Players"):GetPlayers()) do
  105.                     if oth3.Name:lower():find(args3:lower()) or oth3.DisplayName:lower():find(args3:lower()) then
  106.                         hum.Sit = true
  107.                         wait()
  108.                         local con2
  109.                         con2 = game:GetService("RunService").RenderStepped:Connect(function()
  110.                             hrp.CFrame = oth3.Character.Head.CFrame * CFrame.Angles(math.pi * 0, 1, 0)
  111.                             uis.InputBegan:Connect(function(i2, g2)
  112.                                 if i2.KeyCode == Enum.KeyCode.Space and not g2 then
  113.                                     hum.Sit = false
  114.                                     wait()
  115.                                     con2:Disconnect()
  116.                                 end
  117.                             end)
  118.                         end)
  119.                     end
  120.                 end
  121.             end
  122.         elseif text.Text:sub(1, 8) == "waypoint" then
  123.             local args4 = text.Text:sub(10)
  124.             if args4 ~= "" then
  125.                 local p        = Instance.new("Part")
  126.                 p.Parent       = plr.Character
  127.                 p.Name         = args4
  128.                 p.Transparency = 0.9
  129.                 p.Anchored     = true
  130.                 p.CanCollide   = false
  131.                 p.BrickColor   = BrickColor.new("Pink")
  132.                 if plr.Character:FindFirstChild("RightFoot") then
  133.                     p.CFrame = plr.Character.RightFoot.CFrame
  134.                 else
  135.                     p.CFrame = plr.Character[rightleg].CFrame
  136.                 end
  137.             end
  138.         elseif text.Text:sub(1, 5) == "wayrm" then
  139.             local args5 = text.Text:sub(7)
  140.             if args5 ~= "" then
  141.                 plr.Character[args5]:Destroy()
  142.             end
  143.         elseif text.Text:sub(1, 5) == "tpway" then
  144.             local args6 = text.Text:sub(7)
  145.             if args6 ~= "" then
  146.                 hrp.CFrame = plr.Character[args6].CFrame
  147.             end
  148.         elseif text.Text:sub(1, 4) == "view" then
  149.             local args7 = text.Text:sub(6)
  150.             if args7 ~= "" then
  151.                 for _, oth4 in pairs(game:GetService("Players"):GetPlayers()) do
  152.                     if oth4.Name:lower():find(args7:lower()) or oth4.DisplayName:lower():find(args7:lower()) then
  153.                         game.Workspace.Camera.CameraSubject = oth4.Character
  154.                     end
  155.                 end
  156.             end
  157.         elseif text.Text == "unview" then
  158.             game.Workspace.Camera.CameraSubject = plr.Character
  159.         elseif text.Text:sub(1, 5) == "speed" then
  160.             local args8 = text.Text:sub(7)
  161.             if args8 ~= "" then
  162.                 hum.WalkSpeed = args8
  163.             end
  164.         elseif text.Text:sub(1, 9) == "jumppower" then
  165.             local args9 = text.Text:sub(11)
  166.             if args9 ~= "" then
  167.                 hum.JumpPower = args9
  168.             end
  169.         elseif text.Text:sub(1, 7) == "gravity" then
  170.             local grav = text.Text:sub(9)
  171.             if grav ~= "" then
  172.                 game.Workspace.Gravity = grav
  173.             end
  174.         elseif text.Text:sub(1,3) == "say" then
  175.             local say = text.Text:sub(5)
  176.             if say ~= "" then
  177.                 if game:FindFirstChild("TextChatService") then
  178.                     game.TextChatService.TextChannels.RBXGeneral:SendAsync(say)
  179.                 else
  180.                     game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(say, "ALL")
  181.                 end
  182.             end
  183.         elseif text.Text == "grabtools" then
  184.             local toolcon
  185.             toolcon = game:GetService("RunService").RenderStepped:Connect(function()
  186.                 for _, tool in pairs(game.Workspace:GetChildren()) do
  187.                     if tool:IsA("Tool") then
  188.                         tool.Parent = plr.Backpack
  189.                     end
  190.                 end
  191.             end)
  192.         elseif text.Text == "ungrabtools" then
  193.             toolcon:Disconnect()
  194.         elseif text.Text == "droptools" then
  195.             for _, drop in pairs(plr.Backpack:GetChildren()) do
  196.                 if drop:IsA("Tool") then
  197.                     drop.Parent = game.Workspace
  198.                 end
  199.             end
  200.         elseif text.Text == "lay" then
  201.             hum.Sit = true
  202.             task.wait(0.1)
  203.             hum.RootPart.CFrame = hum.RootPart.CFrame * CFrame.Angles(math.pi * 0.5, 0, 0)
  204.             for _, nigger in pairs(hum:GetPlayingAnimationTracks()) do
  205.                 nigger:Stop()
  206.             end
  207.         elseif text.Text == "sit" then
  208.             hum.Sit = true
  209.         elseif text.Text == "reset" then
  210.             hum.Health = 0
  211.         elseif text.Text == "rejoin" then
  212.             local p = game:GetService("Players"):GetPlayers()
  213.  
  214.             if #p <= 1 then
  215.                 p.LocalPlayer:Kick("Rejoin")
  216.                 wait()
  217.                 game:GetService("TeleportService"):Teleport(game.PlaceId, p.LocalPlayer)
  218.             else
  219.                 game:GetService("TeleportService"):TeleportToPlaceInstance(game.PlaceId, game.JobId, p.LocalPlayer)
  220.             end
  221.         elseif text.Text:sub(1, 7) == "maxzoom" then
  222.             local mz = text.Text:sub(9)
  223.             if mz ~= "" then
  224.                 plr.CameraMaxZoomDistance = mz
  225.             end
  226.         elseif text.Text:sub(1, 7) == "minzoom" then
  227.             local minz = text.Text:sub(9)
  228.             if minz ~= "" then
  229.                 plr.CameraMinZoomDistance = minz
  230.             end
  231.         elseif text.Text == "clicktp" then
  232.             game:GetService("UserInputService").InputBegan:Connect(function(input, gay)
  233.                 if gay then return end
  234.    
  235.                 local shift = game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl)
  236.    
  237.                 if input.UserInputType == Enum.UserInputType.MouseButton1 then
  238.                     if shift then
  239.                         mouse      = game:GetService("Players").LocalPlayer:GetMouse()
  240.                         local tp   = mouse.Hit+Vector3.new(0,2.5,0)
  241.                         tp         = CFrame.new(tp.X,tp.Y,tp.Z)
  242.                         hrp.CFrame = tp
  243.                     else
  244.                         print("Only m1 :(")
  245.                     end
  246.                 end
  247.             end)
  248.         elseif text.Text == "infjump" then
  249.             game:GetService("UserInputService").InputBegan:Connect(function(i,g)
  250.                 if i.KeyCode == Enum.KeyCode.Space and not g then
  251.                     plr.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  252.                 end
  253.             end)
  254.         elseif text.Text == "jump" then
  255.             plr.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  256.         end
  257.     end
  258. end)
  259.  
  260. local btn2            = Instance.new("TextButton")
  261. btn2.Parent           = frame
  262. btn2.Size             = UDim2.new(0, 105, 0, 45)
  263. btn2.Position         = UDim2.new(0, 85, 0, 114)
  264. btn2.Text             = "Clear"
  265. btn2.TextSize         = 11
  266. btn2.BackgroundColor3 = Color3.fromRGB(186,85,211)
  267.  
  268. btn2.MouseButton1Click:Connect(function()
  269.     text.Text = ""
  270. end)
  271.  
  272. uis.InputBegan:Connect(function(i, g)
  273.     if i.KeyCode == Enum.KeyCode.Semicolon and not g then
  274.         text:CaptureFocus()
  275.         wait(0)
  276.         text.Text = ""
  277.     end
  278. end)
  279.  
  280. local btn3            = Instance.new("TextButton")
  281. btn3.Parent           = frame
  282. btn3.Size             = UDim2.new(0, 75, 0, 15)
  283. btn3.Position         = UDim2.new(0, 34, 0, 16)
  284. btn3.Text             = "Command list"
  285. btn3.BackgroundColor3 = Color3.fromRGB(186,85,211)
  286.  
  287. btn3.MouseButton1Click:Connect(function()
  288.     local frame2            = Instance.new("Frame")
  289.     frame2.Parent           = screen
  290.     frame2.Size             = UDim2.new(0, 310, 0, 420)
  291.     frame2.BackgroundColor3 = Color3.fromRGB(255,20,147)
  292.     frame2.Position         = UDim2.new(0, 1040, 0, 550)
  293.     frame2.Name             = "f2"
  294.    
  295.    
  296.     frame2.Active     = true
  297.     frame2.Selectable = true
  298.     frame2.Draggable  = true
  299.    
  300.     local label2           = Instance.new("TextLabel")
  301.     label2.Parent          = frame2
  302.     label2.BorderSizePixel = 0
  303.     label2.TextSize        = 11
  304.     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"
  305.     label2.Position        = UDim2.new(0, 155, 0, 220)
  306.    
  307.     local labelC           = Instance.new("TextLabel")
  308.     labelC.Parent          = frame2
  309.     labelC.BorderSizePixel = 0
  310.     labelC.TextSize        = 14
  311.     labelC.Text            = "Command list"
  312.     labelC.Position        = UDim2.new(0, 150, 0, 15)
  313.    
  314.     local btnX            = Instance.new("TextButton")
  315.     btnX.Parent           = frame2
  316.     btnX.Size             = UDim2.new(0, 20, 0, 19)
  317.     btnX.Position         = UDim2.new(0, 284, 0, 4)
  318.     btnX.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  319.     btnX.Text             = "X"
  320.     btnX.TextSize         = 12
  321.     btnX.TextColor3       = Color3.fromRGB(255,0,0)
  322.    
  323.     btnX.MouseButton1Click:Connect(function()
  324.         frame2:Destroy()
  325.     end)
  326. end)
  327.  
  328. local btn4            = Instance.new("TextButton")
  329. btn4.Parent           = frame
  330. btn4.Size             = UDim2.new(0, 75, 0, 15)
  331. btn4.Position         = UDim2.new(0, 162, 0, 16)
  332. btn4.Text             = "Themes"
  333. btn4.BackgroundColor3 = Color3.fromRGB(186,85,211)
  334.  
  335. btn4.MouseButton1Click:Connect(function()
  336.     local frame3            = Instance.new("Frame")
  337.     frame3.Parent           = screen
  338.     frame3.Size             = UDim2.new(0, 235, 0, 250)
  339.     frame3.BackgroundColor3 = Color3.fromRGB(255,20,147)
  340.     frame3.Position         = UDim2.new(0, 1340, 0, 250)
  341.     frame3.Name             = "f3"
  342.    
  343.    
  344.     frame3.Active     = true
  345.     frame3.Selectable = true
  346.     frame3.Draggable  = true
  347.    
  348.     local btnX2            = Instance.new("TextButton")
  349.     btnX2.Parent           = frame3
  350.     btnX2.Size             = UDim2.new(0, 20, 0, 19)
  351.     btnX2.Position         = UDim2.new(0, 210, 0, 4)
  352.     btnX2.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  353.     btnX2.Text             = "X"
  354.     btnX2.TextSize         = 12
  355.     btnX2.TextColor3       = Color3.fromRGB(255,0,0)
  356.    
  357.     btnX2.MouseButton1Click:Connect(function()
  358.         frame3:Destroy()
  359.     end)
  360.    
  361.     local btnT            = Instance.new("TextButton")
  362.     btnT.Parent           = frame3
  363.     btnT.Size             = UDim2.new(0, 55, 0, 25)
  364.     btnT.Position         = UDim2.new(0, 92, 0, 35)
  365.     btnT.Text             = "Light"
  366.     btnT.BackgroundColor3 = Color3.fromRGB(186,85,211)
  367.     btnT.TextSize         = 11
  368.    
  369.     btnT.MouseButton1Click:Connect(function()
  370.         frame.BackgroundColor3             = Color3.fromRGB(255,255,255)
  371.         btn3.BackgroundColor3              = Color3.fromRGB(105,105,105)
  372.         btn3.TextColor3                    = Color3.fromRGB(255,255,255)
  373.         btn4.BackgroundColor3              = Color3.fromRGB(105,105,105)
  374.         btn4.TextColor3                    = Color3.fromRGB(255,255,255)
  375.         text.BackgroundColor3              = Color3.fromRGB(105,105,105)
  376.         text.TextColor3                    = Color3.fromRGB(255,255,255)
  377.         text.PlaceholderColor3             = Color3.fromRGB(255,255,255)
  378.         btn2.BackgroundColor3              = Color3.fromRGB(105,105,105)
  379.         btn2.TextColor3                    = Color3.fromRGB(255,255,255)
  380.         screen.Frame.TextLabel.TextColor3  = Color3.fromRGB(0,0,0)
  381.         screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
  382.         frame3.BackgroundColor3            = Color3.fromRGB(255,255,255)
  383.         btnT.BackgroundColor3              = Color3.fromRGB(105,105,105)
  384.         screen.f3.btnT2.BackgroundColor3   = Color3.fromRGB(105,105,105)
  385.         screen.f3.btnT3.BackgroundColor3   = Color3.fromRGB(105,105,105)
  386.         screen.f3.btnT4.BackgroundColor3   = Color3.fromRGB(105,105,105)
  387.         screen.f3.textT.BackgroundColor3   = Color3.fromRGB(105,105,105)
  388.         btnT.TextColor3                    = Color3.fromRGB(255,255,255)
  389.         screen.f3.btnT2.TextColor3         = Color3.fromRGB(255,255,255)
  390.         screen.f3.btnT3.TextColor3         = Color3.fromRGB(255,255,255)
  391.         screen.f3.btnT4.TextColor3         = Color3.fromRGB(255,255,255)
  392.         screen.f3.textT.TextColor3         = Color3.fromRGB(255,255,255)
  393.         screen.f3.labelT.TextColor3        = Color3.fromRGB(0,0,0)
  394.         screen.f3.labelT2.TextColor3       = Color3.fromRGB(0,0,0)
  395.         screen:WaitForChild("f2").BackgroundColor3         = Color3.fromRGB(255,255,255)
  396.     end)
  397.    
  398.     local btnT2            = Instance.new("TextButton")
  399.     btnT2.Parent           = frame3
  400.     btnT2.Size             = UDim2.new(0, 55, 0, 25)
  401.     btnT2.Position         = UDim2.new(0, 92, 0, 85)
  402.     btnT2.Text             = "Dark"
  403.     btnT2.BackgroundColor3 = Color3.fromRGB(186,85,211)
  404.     btnT2.TextSize         = 11
  405.     btnT2.Name             = "btnT2"
  406.    
  407.     btnT2.MouseButton1Click:Connect(function()
  408.         frame.BackgroundColor3             = Color3.fromRGB(65,65,65)
  409.         btn3.BackgroundColor3              = Color3.fromRGB(105,105,105)
  410.         btn3.TextColor3                    = Color3.fromRGB(255,255,255)
  411.         btn4.BackgroundColor3              = Color3.fromRGB(105,105,105)
  412.         btn4.TextColor3                    = Color3.fromRGB(255,255,255)
  413.         text.BackgroundColor3              = Color3.fromRGB(105,105,105)
  414.         text.TextColor3                    = Color3.fromRGB(255,255,255)
  415.         text.PlaceholderColor3             = Color3.fromRGB(255,255,255)
  416.         btn2.BackgroundColor3              = Color3.fromRGB(105,105,105)
  417.         btn2.TextColor3                    = Color3.fromRGB(255,255,255)
  418.         btn.BackgroundColor3               = Color3.fromRGB(255,255,255)
  419.         screen.Frame.TextLabel.TextColor3  = Color3.fromRGB(255,255,255)
  420.         screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(255,255,255)
  421.         frame3.BackgroundColor3            = Color3.fromRGB(65,65,65)
  422.         btnT.BackgroundColor3              = Color3.fromRGB(105,105,105)
  423.         btnT2.BackgroundColor3             = Color3.fromRGB(105,105,105)
  424.         screen.f3.btnT3.BackgroundColor3   = Color3.fromRGB(105,105,105)
  425.         screen.f3.btnT4.BackgroundColor3   = Color3.fromRGB(105,105,105)
  426.         screen.f3.textT.BackgroundColor3   = Color3.fromRGB(105,105,105)
  427.         btnT.TextColor3                    = Color3.fromRGB(255,255,255)
  428.         btnT2.TextColor3                   = Color3.fromRGB(255,255,255)
  429.         screen.f3.btnT3.TextColor3         = Color3.fromRGB(255,255,255)
  430.         screen.f3.btnT4.TextColor3         = Color3.fromRGB(255,255,255)
  431.         screen.f3.textT.TextColor3         = Color3.fromRGB(255,255,255)
  432.         screen.f3.labelT.TextColor3        = Color3.fromRGB(255,255,255)
  433.         screen.f3.labelT2.TextColor3       = Color3.fromRGB(255,255,255)
  434.         screen:WaitForChild("f2").BackgroundColor3         = Color3.fromRGB(65,65,65)
  435.     end)
  436.    
  437.     local btnT3            = Instance.new("TextButton")
  438.     btnT3.Parent           = frame3
  439.     btnT3.Size             = UDim2.new(0, 55, 0, 25)
  440.     btnT3.Position         = UDim2.new(0, 92, 0, 135)
  441.     btnT3.Text             = "Basic"
  442.     btnT3.BackgroundColor3 = Color3.fromRGB(186,85,211)
  443.     btnT3.TextSize         = 11
  444.     btnT3.Name             = "btnT3"
  445.    
  446.     btnT3.MouseButton1Click:Connect(function()
  447.         frame.BackgroundColor3             = Color3.fromRGB(255,20,147)
  448.         btn3.BackgroundColor3              = Color3.fromRGB(186,85,211)
  449.         btn3.TextColor3                    = Color3.fromRGB(0,0,0)
  450.         btn4.BackgroundColor3              = Color3.fromRGB(186,85,211)
  451.         btn4.TextColor3                    = Color3.fromRGB(0,0,0)
  452.         text.BackgroundColor3              = Color3.fromRGB(186,85,211)
  453.         text.TextColor3                    = Color3.fromRGB(0,0,0)
  454.         text.PlaceholderColor3             = Color3.fromRGB(65,65,65)
  455.         btn2.BackgroundColor3              = Color3.fromRGB(186,85,211)
  456.         btn2.TextColor3                    = Color3.fromRGB(0,0,0)
  457.         btn.BackgroundColor3               = Color3.fromRGB(0,0,0)
  458.         screen.Frame.TextLabel.TextColor3  = Color3.fromRGB(0,0,0)
  459.         screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
  460.         frame3.BackgroundColor3            = Color3.fromRGB(255,20,147)
  461.         btnT.BackgroundColor3              = Color3.fromRGB(186,85,211)
  462.         btnT2.BackgroundColor3             = Color3.fromRGB(186,85,211)
  463.         btnT3.BackgroundColor3             = Color3.fromRGB(186,85,211)
  464.         screen.f3.btnT4.BackgroundColor3   = Color3.fromRGB(186,85,211)
  465.         screen.f3.textT.BackgroundColor3   = Color3.fromRGB(186,85,211)
  466.         screen:WaitForChild("f2").BackgroundColor3         = Color3.fromRGB(255,20,147)
  467.     end)
  468.    
  469.     local labelT           = Instance.new("TextLabel")
  470.     labelT.Parent          = frame3
  471.     labelT.BorderSizePixel = 0
  472.     labelT.TextSize        = 14
  473.     labelT.Text            = "Themes"
  474.     labelT.Position        = UDim2.new(0, 120, 0, 15)
  475.     labelT.Name            = "labelT"
  476.    
  477.     local textT             = Instance.new("TextBox")
  478.     textT.Parent            = frame3
  479.     textT.Size              = UDim2.new(0, 85, 0, 25)
  480.     textT.Position          = UDim2.new(0, 78, 0, 174)
  481.     textT.Text              = ""
  482.     textT.PlaceholderText   = "Own"
  483.     textT.TextSize          = 11
  484.     textT.PlaceholderColor3 = Color3.fromRGB(65,65,65)
  485.     textT.ClearTextOnFocus  = false
  486.     textT.BackgroundColor3  = Color3.fromRGB(186,85,211)
  487.     textT.Name              = "textT"
  488.    
  489.     local labelT2           = Instance.new("TextLabel")
  490.     labelT2.Parent          = frame3
  491.     labelT2.BorderSizePixel = 0
  492.     labelT2.Text            = "Example:\nblue"
  493.     labelT2.TextSize        = 10
  494.     labelT2.Position        = UDim2.new(0, 200, 0, 186)
  495.     labelT2.Name            = "labelT2"
  496.    
  497.     textT.FocusLost:Connect(function(ent)
  498.         if ent then
  499.             if textT.Text == "blue" then
  500.                 frame.BackgroundColor3             = Color3.fromRGB(0,0,255)
  501.                 btn3.BackgroundColor3              = Color3.fromRGB(0,191,255)
  502.                 btn3.TextColor3                    = Color3.fromRGB(0,0,0)
  503.                 btn4.BackgroundColor3              = Color3.fromRGB(0,191,255)
  504.                 btn4.TextColor3                    = Color3.fromRGB(0,0,0)
  505.                 text.BackgroundColor3              = Color3.fromRGB(0,191,255)
  506.                 text.TextColor3                    = Color3.fromRGB(0,0,0)
  507.                 text.PlaceholderColor3             = Color3.fromRGB(65,65,65)
  508.                 btn2.BackgroundColor3              = Color3.fromRGB(0,191,255)
  509.                 btn2.TextColor3                    = Color3.fromRGB(0,0,0)
  510.                 btn.BackgroundColor3               = Color3.fromRGB(0,0,0)
  511.                 screen.Frame.TextLabel.TextColor3  = Color3.fromRGB(0,0,0)
  512.                 screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
  513.                 frame3.BackgroundColor3            = Color3.fromRGB(0,0,255)
  514.                 btnT.BackgroundColor3              = Color3.fromRGB(0,191,255)
  515.                 btnT2.BackgroundColor3             = Color3.fromRGB(0,191,255)
  516.                 btnT3.BackgroundColor3             = Color3.fromRGB(0,191,255)
  517.                 screen.f3.btnT4.BackgroundColor3   = Color3.fromRGB(0,191,255)
  518.                 textT.BackgroundColor3             = Color3.fromRGB(0,191,255)
  519.                 screen:WaitForChild("f2").BackgroundColor3         = Color3.fromRGB(0,0,255)
  520.             elseif textT.Text == "red" then
  521.                 frame.BackgroundColor3             = Color3.fromRGB(245,0,0)
  522.                 btn3.BackgroundColor3              = Color3.fromRGB(253,98,98)
  523.                 btn3.TextColor3                    = Color3.fromRGB(0,0,0)
  524.                 btn4.BackgroundColor3              = Color3.fromRGB(253,98,98)
  525.                 btn4.TextColor3                    = Color3.fromRGB(0,0,0)
  526.                 text.BackgroundColor3              = Color3.fromRGB(253,98,98)
  527.                 text.TextColor3                    = Color3.fromRGB(0,0,0)
  528.                 text.PlaceholderColor3             = Color3.fromRGB(65,65,65)
  529.                 btn2.BackgroundColor3              = Color3.fromRGB(253,98,98)
  530.                 btn2.TextColor3                    = Color3.fromRGB(0,0,0)
  531.                 btn.BackgroundColor3               = Color3.fromRGB(0,0,0)
  532.                 screen.Frame.TextLabel.TextColor3  = Color3.fromRGB(0,0,0)
  533.                 screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
  534.                 frame3.BackgroundColor3            = Color3.fromRGB(245,0,0)
  535.                 btnT.BackgroundColor3              = Color3.fromRGB(253,98,98)
  536.                 btnT2.BackgroundColor3             = Color3.fromRGB(253,98,98)
  537.                 btnT3.BackgroundColor3             = Color3.fromRGB(253,98,98)
  538.                 screen.f3.btnT4.BackgroundColor3   = Color3.fromRGB(253,98,98)
  539.                 textT.BackgroundColor3             = Color3.fromRGB(253,98,98)
  540.                 screen:WaitForChild("f2").BackgroundColor3         = Color3.fromRGB(245,0,0)
  541.             elseif textT.Text == "green" then
  542.                 frame.BackgroundColor3             = Color3.fromRGB(50,205,50)
  543.                 btn3.BackgroundColor3              = Color3.fromRGB(124,252,0)
  544.                 btn3.TextColor3                    = Color3.fromRGB(0,0,0)
  545.                 btn4.BackgroundColor3              = Color3.fromRGB(124,252,0)
  546.                 btn4.TextColor3                    = Color3.fromRGB(0,0,0)
  547.                 text.BackgroundColor3              = Color3.fromRGB(124,252,0)
  548.                 text.TextColor3                    = Color3.fromRGB(0,0,0)
  549.                 text.PlaceholderColor3             = Color3.fromRGB(65,65,65)
  550.                 btn2.BackgroundColor3              = Color3.fromRGB(124,252,0)
  551.                 btn2.TextColor3                    = Color3.fromRGB(0,0,0)
  552.                 btn.BackgroundColor3               = Color3.fromRGB(0,0,0)
  553.                 screen.Frame.TextLabel.TextColor3  = Color3.fromRGB(0,0,0)
  554.                 screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
  555.                 frame3.BackgroundColor3            = Color3.fromRGB(50,205,50)
  556.                 btnT.BackgroundColor3              = Color3.fromRGB(124,252,0)
  557.                 btnT2.BackgroundColor3             = Color3.fromRGB(124,252,0)
  558.                 btnT3.BackgroundColor3             = Color3.fromRGB(124,252,0)
  559.                 screen.f3.btnT4.BackgroundColor3   = Color3.fromRGB(124,252,0)
  560.                 textT.BackgroundColor3             = Color3.fromRGB(124,252,0)
  561.                 screen:WaitForChild("f2").BackgroundColor3         = Color3.fromRGB(50,205,50)
  562.             elseif textT.Text == "purple" then
  563.                 frame.BackgroundColor3             = Color3.fromRGB(138,43,226)
  564.                 btn3.BackgroundColor3              = Color3.fromRGB(218,112,214)
  565.                 btn3.TextColor3                    = Color3.fromRGB(0,0,0)
  566.                 btn4.BackgroundColor3              = Color3.fromRGB(218,112,214)
  567.                 btn4.TextColor3                    = Color3.fromRGB(0,0,0)
  568.                 text.BackgroundColor3              = Color3.fromRGB(218,112,214)
  569.                 text.TextColor3                    = Color3.fromRGB(0,0,0)
  570.                 text.PlaceholderColor3             = Color3.fromRGB(65,65,65)
  571.                 btn2.BackgroundColor3              = Color3.fromRGB(218,112,214)
  572.                 btn2.TextColor3                    = Color3.fromRGB(0,0,0)
  573.                 btn.BackgroundColor3               = Color3.fromRGB(0,0,0)
  574.                 screen.Frame.TextLabel.TextColor3  = Color3.fromRGB(0,0,0)
  575.                 screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
  576.                 frame3.BackgroundColor3            = Color3.fromRGB(138,43,226)
  577.                 btnT.BackgroundColor3              = Color3.fromRGB(218,112,214)
  578.                 btnT2.BackgroundColor3             = Color3.fromRGB(218,112,214)
  579.                 btnT3.BackgroundColor3             = Color3.fromRGB(218,112,214)
  580.                 screen.f3.btnT4.BackgroundColor3   = Color3.fromRGB(218,112,214)
  581.                 textT.BackgroundColor3             = Color3.fromRGB(218,112,214)
  582.                 screen:WaitForChild("f2").BackgroundColor3         = Color3.fromRGB(138,43,226)
  583.             elseif textT.Text == "orange" then
  584.                 frame.BackgroundColor3             = Color3.fromRGB(255,69,0)
  585.                 btn3.BackgroundColor3              = Color3.fromRGB(255,165,0)
  586.                 btn3.TextColor3                    = Color3.fromRGB(0,0,0)
  587.                 btn4.BackgroundColor3              = Color3.fromRGB(255,165,0)
  588.                 btn4.TextColor3                    = Color3.fromRGB(0,0,0)
  589.                 text.BackgroundColor3              = Color3.fromRGB(255,165,0)
  590.                 text.TextColor3                    = Color3.fromRGB(0,0,0)
  591.                 text.PlaceholderColor3             = Color3.fromRGB(65,65,65)
  592.                 btn2.BackgroundColor3              = Color3.fromRGB(255,165,0)
  593.                 btn2.TextColor3                    = Color3.fromRGB(0,0,0)
  594.                 btn.BackgroundColor3               = Color3.fromRGB(0,0,0)
  595.                 screen.Frame.TextLabel.TextColor3  = Color3.fromRGB(0,0,0)
  596.                 screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
  597.                 frame3.BackgroundColor3            = Color3.fromRGB(255,69,0)
  598.                 btnT.BackgroundColor3              = Color3.fromRGB(255,165,0)
  599.                 btnT2.BackgroundColor3             = Color3.fromRGB(255,165,0)
  600.                 btnT3.BackgroundColor3             = Color3.fromRGB(255,165,0)
  601.                 screen.f3.btnT4.BackgroundColor3   = Color3.fromRGB(255,165,0)
  602.                 textT.BackgroundColor3             = Color3.fromRGB(255,165,0)
  603.                 screen:WaitForChild("f2").BackgroundColor3         = Color3.fromRGB(255,69,0)
  604.             elseif textT.Text == "yellow" then
  605.                 frame.BackgroundColor3             = Color3.fromRGB(241,249,0)
  606.                 btn3.BackgroundColor3              = Color3.fromRGB(234,238,117)
  607.                 btn3.TextColor3                    = Color3.fromRGB(0,0,0)
  608.                 btn4.BackgroundColor3              = Color3.fromRGB(234,238,117)
  609.                 btn4.TextColor3                    = Color3.fromRGB(0,0,0)
  610.                 text.BackgroundColor3              = Color3.fromRGB(234,238,117)
  611.                 text.TextColor3                    = Color3.fromRGB(0,0,0)
  612.                 text.PlaceholderColor3             = Color3.fromRGB(65,65,65)
  613.                 btn2.BackgroundColor3              = Color3.fromRGB(234,238,117)
  614.                 btn2.TextColor3                    = Color3.fromRGB(0,0,0)
  615.                 btn.BackgroundColor3               = Color3.fromRGB(0,0,0)
  616.                 screen.Frame.TextLabel.TextColor3  = Color3.fromRGB(0,0,0)
  617.                 screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
  618.                 frame3.BackgroundColor3            = Color3.fromRGB(241,249,0)
  619.                 btnT.BackgroundColor3              = Color3.fromRGB(234,238,117)
  620.                 btnT2.BackgroundColor3             = Color3.fromRGB(234,238,117)
  621.                 btnT3.BackgroundColor3             = Color3.fromRGB(234,238,117)
  622.                 screen.f3.btnT4.BackgroundColor3   = Color3.fromRGB(234,238,117)
  623.                 textT.BackgroundColor3             = Color3.fromRGB(234,238,117)
  624.                 screen:WaitForChild("f2").BackgroundColor3 = Color3.fromRGB(241,249,0)
  625.             elseif textT.Text == "pink" then
  626.                 frame.BackgroundColor3             = Color3.fromRGB(255,127,247)
  627.                 btn3.BackgroundColor3              = Color3.fromRGB(255,170,249)
  628.                 btn3.TextColor3                    = Color3.fromRGB(0,0,0)
  629.                 btn4.BackgroundColor3              = Color3.fromRGB(255,170,249)
  630.                 btn4.TextColor3                    = Color3.fromRGB(0,0,0)
  631.                 text.BackgroundColor3              = Color3.fromRGB(255,170,249)
  632.                 text.TextColor3                    = Color3.fromRGB(0,0,0)
  633.                 text.PlaceholderColor3             = Color3.fromRGB(65,65,65)
  634.                 btn2.BackgroundColor3              = Color3.fromRGB(255,170,249)
  635.                 btn2.TextColor3                    = Color3.fromRGB(0,0,0)
  636.                 btn.BackgroundColor3               = Color3.fromRGB(0,0,0)
  637.                 screen.Frame.TextLabel.TextColor3  = Color3.fromRGB(0,0,0)
  638.                 screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
  639.                 frame3.BackgroundColor3            = Color3.fromRGB(255,127,247)
  640.                 btnT.BackgroundColor3              = Color3.fromRGB(255,170,249)
  641.                 btnT2.BackgroundColor3             = Color3.fromRGB(255,170,249)
  642.                 btnT3.BackgroundColor3             = Color3.fromRGB(255,170,249)
  643.                 screen.f3.btnT4.BackgroundColor3   = Color3.fromRGB(255,170,249)
  644.                 textT.BackgroundColor3             = Color3.fromRGB(255,170,249)
  645.                 screen:WaitForChild("f2").BackgroundColor3         = Color3.fromRGB(255,127,247)
  646.             end
  647.         end
  648.     end)
  649.    
  650.     local btnT4            = Instance.new("TextButton")
  651.     btnT4.Parent           = frame3
  652.     btnT4.Size             = UDim2.new(0, 55, 0, 25)
  653.     btnT4.Position         = UDim2.new(0, 92, 0, 214)
  654.     btnT4.Text             = "Clear"
  655.     btnT4.BackgroundColor3 = Color3.fromRGB(186,85,211)
  656.     btnT4.TextSize         = 11
  657.     btnT4.Name             = "btnT4"
  658.    
  659.     btnT4.MouseButton1Click:Connect(function()
  660.         textT.Text = ""
  661.     end)
  662. end)
  663.  
  664. local label           = Instance.new("TextLabel")
  665. label.Parent          = frame
  666. label.Text            = "x0y0zkidd's\nadmin"
  667. label.TextSize        = 16
  668. label.BorderSizePixel = 0
  669. label.Position        = UDim2.new(0, 137, 0, 310)
  670.  
  671. local labelP           = Instance.new("TextLabel")
  672. labelP.Parent          = frame
  673. labelP.Text            = "Pray for\nTubers93!"
  674. labelP.TextSize        = 16
  675. labelP.BorderSizePixel = 0
  676. labelP.Position        = UDim2.new(0, 137, 0, 250)
  677. labelP.Name            = "TextLabel2"
  678.  
  679. local function script()
  680. local plr      = game:GetService("Players").LocalPlayer
  681. local hum      = plr.Character.Humanoid
  682. local hrp      = plr.Character.HumanoidRootPart
  683. local uis      = game:GetService("UserInputService")
  684. local rightleg = "Right Leg"
  685.  
  686. local screen  = Instance.new("ScreenGui")
  687. screen.Name   = "xyz_admin2"
  688. screen.Parent = plr.PlayerGui
  689.  
  690. local frame            = Instance.new("Frame")
  691. frame.Parent           = screen
  692. frame.Size             = UDim2.new(0, 270, 0, 350)
  693. frame.BackgroundColor3 = Color3.fromRGB(255,20,147)
  694. frame.Position         = UDim2.new(0, 1340, 0, 550)
  695.  
  696. frame.Active     = true
  697. frame.Selectable = true
  698. frame.Draggable  = true
  699.  
  700. local keyt                  = Instance.new("TextBox")
  701. keyt.Parent                 = frame
  702. keyt.Size                   = UDim2.new(0, 105, 0, 45)
  703. keyt.Position               = UDim2.new(0, 85, 0, 174)
  704. keyt.Text                   = ""
  705. keyt.TextColor3             = Color3.fromRGB(255,255,255)
  706. keyt.TextSize               = 10
  707. keyt.PlaceholderText        = ""
  708. keyt.ClearTextOnFocus       = false
  709. keyt.MultiLine              = true
  710. keyt.Font                   = Enum.Font.GothamBold
  711. keyt.PlaceholderColor3      = Color3.fromRGB(65,65,65)
  712. keyt.BackgroundColor3       = Color3.fromRGB(186,85,211)
  713. keyt.BackgroundTransparency = 1
  714. keyt.TextXAlignment         = "Left"
  715. keyt.TextYAlignment         = "Top"
  716.  
  717. local exe                  = Instance.new("ImageLabel")
  718. exe.Parent                 = frame
  719. exe.Size                   = keyt.Size
  720. exe.Position               = keyt.Position
  721. exe.BackgroundTransparency = 1
  722. exe.Image                  = "rbxassetid://89760411485169"
  723. exe.ZIndex                 = 1
  724. keyt.ZIndex                = 2
  725.  
  726. local btn            = Instance.new("TextButton")
  727. btn.Parent           = frame
  728. btn.Size             = UDim2.new(0, 20, 0, 19)
  729. btn.Position         = UDim2.new(0, 245, 0, 4)
  730. btn.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  731. btn.Text             = "X"
  732. btn.TextSize         = 12
  733. btn.TextColor3       = Color3.fromRGB(255,0,0)
  734.  
  735. btn.MouseButton1Click:Connect(function()
  736.     screen:Destroy()
  737. end)
  738.  
  739. local text             = Instance.new("TextBox")
  740. text.Parent            = frame
  741. text.Size              = UDim2.new(0, 105, 0, 45)
  742. text.Position          = UDim2.new(0, 85, 0, 54)
  743. text.Text              = ""
  744. text.TextSize          = 12
  745. text.PlaceholderText   = "Command"
  746. text.PlaceholderColor3 = Color3.fromRGB(65,65,65)
  747. text.ClearTextOnFocus  = false
  748. text.BackgroundColor3  = Color3.fromRGB(186,85,211)
  749.  
  750. text.FocusLost:Connect(function(e)
  751.     if e then
  752.         if text.Text:sub(1, 2) == "to" then
  753.             local args = text.Text:sub(4)
  754.             if args ~= "" then
  755.                 for _, oth in pairs(game:GetService("Players"):GetPlayers()) do
  756.                     if oth.Name:lower():find(args:lower()) or oth.DisplayName:lower():find(args:lower()) then
  757.                         hrp.CFrame = oth.Character.HumanoidRootPart.CFrame
  758.                     end
  759.                 end
  760.             end
  761.         elseif text.Text:sub(1, 6) == "follow" then
  762.             local args2 = text.Text:sub(8)
  763.             if args ~= "" then
  764.                 for _, oth2 in pairs(game:GetService("Players"):GetPlayers()) do
  765.                     if oth2.Name:lower():find(args2:lower()) or oth2.DisplayName:lower():find(args2:lower()) then
  766.                         local connection
  767.                         connection = game:GetService("RunService").RenderStepped:Connect(function()
  768.                             hum:MoveTo(oth2.Character.HumanoidRootPart.Position)
  769.                             if text.Text == "unfollow" then
  770.                                 connection:Disconnect()
  771.                                 wait()
  772.                                 hum:MoveTo(hrp.Position)
  773.                             end
  774.                         end)
  775.                     end
  776.                 end
  777.             end
  778.         elseif text.Text:sub(1, 7) == "headsit" then
  779.             local args3 = text.Text:sub(9)
  780.             if args3 ~= "" then
  781.                 for _, oth3 in pairs(game:GetService("Players"):GetPlayers()) do
  782.                     if oth3.Name:lower():find(args3:lower()) or oth3.DisplayName:lower():find(args3:lower()) then
  783.                         hum.Sit = true
  784.                         wait()
  785.                         local con2
  786.                         con2 = game:GetService("RunService").RenderStepped:Connect(function()
  787.                             hrp.CFrame = oth3.Character.Head.CFrame * CFrame.Angles(math.pi * 0, 1, 0)
  788.                             uis.InputBegan:Connect(function(i2, g2)
  789.                                 if i2.KeyCode == Enum.KeyCode.Space and not g2 then
  790.                                     hum.Sit = false
  791.                                     wait()
  792.                                     con2:Disconnect()
  793.                                 end
  794.                             end)
  795.                         end)
  796.                     end
  797.                 end
  798.             end
  799.         elseif text.Text:sub(1, 8) == "waypoint" then
  800.             local args4 = text.Text:sub(10)
  801.             if args4 ~= "" then
  802.                 local p        = Instance.new("Part")
  803.                 p.Parent       = plr.Character
  804.                 p.Name         = args4
  805.                 p.Transparency = 0.9
  806.                 p.Anchored     = true
  807.                 p.CanCollide   = false
  808.                 p.BrickColor   = BrickColor.new("Pink")
  809.                 if plr.Character:FindFirstChild("RightFoot") then
  810.                     p.CFrame = plr.Character.RightFoot.CFrame
  811.                 else
  812.                     p.CFrame = plr.Character[rightleg].CFrame
  813.                 end
  814.             end
  815.         elseif text.Text:sub(1, 5) == "wayrm" then
  816.             local args5 = text.Text:sub(7)
  817.             if args5 ~= "" then
  818.                 plr.Character[args5]:Destroy()
  819.             end
  820.         elseif text.Text:sub(1, 5) == "tpway" then
  821.             local args6 = text.Text:sub(7)
  822.             if args6 ~= "" then
  823.                 hrp.CFrame = plr.Character[args6].CFrame
  824.             end
  825.         elseif text.Text:sub(1, 4) == "view" then
  826.             local args7 = text.Text:sub(6)
  827.             if args7 ~= "" then
  828.                 for _, oth4 in pairs(game:GetService("Players"):GetPlayers()) do
  829.                     if oth4.Name:lower():find(args7:lower()) or oth4.DisplayName:lower():find(args7:lower()) then
  830.                         game.Workspace.Camera.CameraSubject = oth4.Character
  831.                     end
  832.                 end
  833.             end
  834.         elseif text.Text == "unview" then
  835.             game.Workspace.Camera.CameraSubject = plr.Character
  836.         elseif text.Text:sub(1, 5) == "speed" then
  837.             local args8 = text.Text:sub(7)
  838.             if args8 ~= "" then
  839.                 hum.WalkSpeed = args8
  840.             end
  841.         elseif text.Text:sub(1, 4) == "jump" then
  842.             local args9 = text.Text:sub(6)
  843.             if args9 ~= "" then
  844.                 hum.JumpPower = args9
  845.             end
  846.         elseif text.Text:sub(1, 7) == "gravity" then
  847.             local grav = text.Text:sub(9)
  848.             if grav ~= "" then
  849.                 game.Workspace.Gravity = grav
  850.             end
  851.         elseif text.Text:sub(1,3) == "say" then
  852.             local say = text.Text:sub(5)
  853.             if say ~= "" then
  854.                 if game:FindFirstChild("TextChatService") then
  855.                     game.TextChatService.TextChannels.RBXGeneral:SendAsync(say)
  856.                 else
  857.                     game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(say, "ALL")
  858.                 end
  859.             end
  860.         elseif text.Text == "grabtools" then
  861.             local toolcon
  862.             toolcon = game:GetService("RunService").RenderStepped:Connect(function()
  863.                 for _, tool in pairs(game.Workspace:GetChildren()) do
  864.                     if tool:IsA("Tool") then
  865.                         tool.Parent = plr.Backpack
  866.                     end
  867.                 end
  868.             end)
  869.         elseif text.Text == "ungrabtools" then
  870.             toolcon:Disconnect()
  871.         elseif text.Text == "droptools" then
  872.             for _, drop in pairs(plr.Backpack:GetChildren()) do
  873.                 if drop:IsA("Tool") then
  874.                     drop.Parent = game.Workspace
  875.                 end
  876.             end
  877.         elseif text.Text == "lay" then
  878.             hum.Sit = true
  879.             task.wait(0.1)
  880.             hum.RootPart.CFrame = hum.RootPart.CFrame * CFrame.Angles(math.pi * 0.5, 0, 0)
  881.             for _, nigger in pairs(hum:GetPlayingAnimationTracks()) do
  882.                 nigger:Stop()
  883.             end
  884.         elseif text.Text == "sit" then
  885.             hum.Sit = true
  886.         elseif text.Text == "reset" then
  887.             hum.Health = 0
  888.         elseif text.Text == "rejoin" then
  889.             local p = game:GetService("Players"):GetPlayers()
  890.  
  891.             if #p <= 1 then
  892.                 p.LocalPlayer:Kick("Rejoin")
  893.                 wait()
  894.                 game:GetService("TeleportService"):Teleport(game.PlaceId, p.LocalPlayer)
  895.             else
  896.                 game:GetService("TeleportService"):TeleportToPlaceInstance(game.PlaceId, game.JobId, p.LocalPlayer)
  897.             end
  898.         elseif text.Text:sub(1, 7) == "maxzoom" then
  899.             local mz = text.Text:sub(9)
  900.             if mz ~= "" then
  901.                 plr.CameraMaxZoomDistance = mz
  902.             end
  903.         elseif text.Text:sub(1, 7) == "minzoom" then
  904.             local minz = text.Text:sub(9)
  905.             if minz ~= "" then
  906.                 plr.CameraMinZoomDistance = minz
  907.             end
  908.         elseif text.Text == "clicktp" then
  909.             game:GetService("UserInputService").InputBegan:Connect(function(input, gay)
  910.                 if gay then return end
  911.    
  912.                 local ctrl = game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl)
  913.    
  914.                 if input.UserInputType == Enum.UserInputType.MouseButton1 then
  915.                     if ctrl then
  916.                         mouse = game:GetService("Players").LocalPlayer:GetMouse()
  917.                         local tp = mouse.Hit+Vector3.new(0,2.5,0)
  918.                         tp = CFrame.new(tp.X,tp.Y,tp.Z)
  919.                         game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = tp
  920.                 else
  921.                     print("Only m1 :(")
  922.                     end
  923.                 end
  924.             end)
  925.         elseif text.Text == "infjump" then
  926.             game:GetService("UserInputService").InputBegan:Connect(function(i,g)
  927.                 if i.KeyCode == Enum.KeyCode.Space and not g then
  928.                     plr.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  929.                 end
  930.             end)
  931.         elseif text.Text == "jump" then
  932.             plr.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  933.         end
  934.     end
  935. end)
  936.  
  937. local btn2            = Instance.new("TextButton")
  938. btn2.Parent           = frame
  939. btn2.Size             = UDim2.new(0, 105, 0, 45)
  940. btn2.Position         = UDim2.new(0, 85, 0, 114)
  941. btn2.Text             = "Clear"
  942. btn2.TextSize         = 11
  943. btn2.BackgroundColor3 = Color3.fromRGB(186,85,211)
  944.  
  945. btn2.MouseButton1Click:Connect(function()
  946.     text.Text = ""
  947. end)
  948.  
  949. uis.InputBegan:Connect(function(i, g)
  950.     if i.KeyCode == Enum.KeyCode.Semicolon and not g then
  951.         text:CaptureFocus()
  952.         wait(0)
  953.         text.Text = ""
  954.     end
  955. end)
  956.  
  957. local btn3            = Instance.new("TextButton")
  958. btn3.Parent           = frame
  959. btn3.Size             = UDim2.new(0, 75, 0, 15)
  960. btn3.Position         = UDim2.new(0, 34, 0, 16)
  961. btn3.Text             = "Command list"
  962. btn3.BackgroundColor3 = Color3.fromRGB(186,85,211)
  963.  
  964. btn3.MouseButton1Click:Connect(function()
  965.     local frame2            = Instance.new("Frame")
  966.     frame2.Parent           = screen
  967.     frame2.Size             = UDim2.new(0, 310, 0, 420)
  968.     frame2.BackgroundColor3 = Color3.fromRGB(255,20,147)
  969.     frame2.Position         = UDim2.new(0, 1040, 0, 550)
  970.     frame2.Name             = "f2"
  971.    
  972.    
  973.     frame2.Active     = true
  974.     frame2.Selectable = true
  975.     frame2.Draggable  = true
  976.    
  977.     local label2           = Instance.new("TextLabel")
  978.     label2.Parent          = frame2
  979.     label2.BorderSizePixel = 0
  980.     label2.TextSize        = 11
  981.     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"
  982.     label2.Position        = UDim2.new(0, 155, 0, 220)
  983.    
  984.     local labelC           = Instance.new("TextLabel")
  985.     labelC.Parent          = frame2
  986.     labelC.BorderSizePixel = 0
  987.     labelC.TextSize        = 14
  988.     labelC.Text            = "Command list"
  989.     labelC.Position        = UDim2.new(0, 150, 0, 15)
  990.    
  991.     local btnX            = Instance.new("TextButton")
  992.     btnX.Parent           = frame2
  993.     btnX.Size             = UDim2.new(0, 20, 0, 19)
  994.     btnX.Position         = UDim2.new(0, 284, 0, 4)
  995.     btnX.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  996.     btnX.Text             = "X"
  997.     btnX.TextSize         = 12
  998.     btnX.TextColor3       = Color3.fromRGB(255,0,0)
  999.    
  1000.     btnX.MouseButton1Click:Connect(function()
  1001.         frame2:Destroy()
  1002.     end)
  1003. end)
  1004.  
  1005. local btn4            = Instance.new("TextButton")
  1006. btn4.Parent           = frame
  1007. btn4.Size             = UDim2.new(0, 75, 0, 15)
  1008. btn4.Position         = UDim2.new(0, 162, 0, 16)
  1009. btn4.Text             = "Themes"
  1010. btn4.BackgroundColor3 = Color3.fromRGB(186,85,211)
  1011.  
  1012. btn4.MouseButton1Click:Connect(function()
  1013.     local frame3            = Instance.new("Frame")
  1014.     frame3.Parent           = screen
  1015.     frame3.Size             = UDim2.new(0, 235, 0, 250)
  1016.     frame3.BackgroundColor3 = Color3.fromRGB(255,20,147)
  1017.     frame3.Position         = UDim2.new(0, 1340, 0, 250)
  1018.     frame3.Name             = "f3"
  1019.    
  1020.    
  1021.     frame3.Active     = true
  1022.     frame3.Selectable = true
  1023.     frame3.Draggable  = true
  1024.    
  1025.     local btnX2            = Instance.new("TextButton")
  1026.     btnX2.Parent           = frame3
  1027.     btnX2.Size             = UDim2.new(0, 20, 0, 19)
  1028.     btnX2.Position         = UDim2.new(0, 210, 0, 4)
  1029.     btnX2.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1030.     btnX2.Text             = "X"
  1031.     btnX2.TextSize         = 12
  1032.     btnX2.TextColor3       = Color3.fromRGB(255,0,0)
  1033.    
  1034.     btnX2.MouseButton1Click:Connect(function()
  1035.         frame3:Destroy()
  1036.     end)
  1037.    
  1038.     local btnT            = Instance.new("TextButton")
  1039.     btnT.Parent           = frame3
  1040.     btnT.Size             = UDim2.new(0, 55, 0, 25)
  1041.     btnT.Position         = UDim2.new(0, 92, 0, 35)
  1042.     btnT.Text             = "Light"
  1043.     btnT.BackgroundColor3 = Color3.fromRGB(186,85,211)
  1044.     btnT.TextSize         = 11
  1045.    
  1046.     btnT.MouseButton1Click:Connect(function()
  1047.         frame.BackgroundColor3             = Color3.fromRGB(255,255,255)
  1048.         btn3.BackgroundColor3              = Color3.fromRGB(105,105,105)
  1049.         btn3.TextColor3                    = Color3.fromRGB(255,255,255)
  1050.         btn4.BackgroundColor3              = Color3.fromRGB(105,105,105)
  1051.         btn4.TextColor3                    = Color3.fromRGB(255,255,255)
  1052.         text.BackgroundColor3              = Color3.fromRGB(105,105,105)
  1053.         text.TextColor3                    = Color3.fromRGB(255,255,255)
  1054.         text.PlaceholderColor3             = Color3.fromRGB(255,255,255)
  1055.         btn2.BackgroundColor3              = Color3.fromRGB(105,105,105)
  1056.         btn2.TextColor3                    = Color3.fromRGB(255,255,255)
  1057.         screen.Frame.TextLabel.TextColor3  = Color3.fromRGB(0,0,0)
  1058.         screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
  1059.         frame3.BackgroundColor3            = Color3.fromRGB(255,255,255)
  1060.         btnT.BackgroundColor3              = Color3.fromRGB(105,105,105)
  1061.         screen.f3.btnT2.BackgroundColor3   = Color3.fromRGB(105,105,105)
  1062.         screen.f3.btnT3.BackgroundColor3   = Color3.fromRGB(105,105,105)
  1063.         screen.f3.btnT4.BackgroundColor3   = Color3.fromRGB(105,105,105)
  1064.         screen.f3.textT.BackgroundColor3   = Color3.fromRGB(105,105,105)
  1065.         btnT.TextColor3                    = Color3.fromRGB(255,255,255)
  1066.         screen.f3.btnT2.TextColor3         = Color3.fromRGB(255,255,255)
  1067.         screen.f3.btnT3.TextColor3         = Color3.fromRGB(255,255,255)
  1068.         screen.f3.btnT4.TextColor3         = Color3.fromRGB(255,255,255)
  1069.         screen.f3.textT.TextColor3         = Color3.fromRGB(255,255,255)
  1070.         screen.f3.labelT.TextColor3        = Color3.fromRGB(0,0,0)
  1071.         screen.f3.labelT2.TextColor3       = Color3.fromRGB(0,0,0)
  1072.         screen:WaitForChild("f2").BackgroundColor3         = Color3.fromRGB(255,255,255)
  1073.     end)
  1074.    
  1075.     local btnT2            = Instance.new("TextButton")
  1076.     btnT2.Parent           = frame3
  1077.     btnT2.Size             = UDim2.new(0, 55, 0, 25)
  1078.     btnT2.Position         = UDim2.new(0, 92, 0, 85)
  1079.     btnT2.Text             = "Dark"
  1080.     btnT2.BackgroundColor3 = Color3.fromRGB(186,85,211)
  1081.     btnT2.TextSize         = 11
  1082.     btnT2.Name             = "btnT2"
  1083.    
  1084.     btnT2.MouseButton1Click:Connect(function()
  1085.         frame.BackgroundColor3             = Color3.fromRGB(65,65,65)
  1086.         btn3.BackgroundColor3              = Color3.fromRGB(105,105,105)
  1087.         btn3.TextColor3                    = Color3.fromRGB(255,255,255)
  1088.         btn4.BackgroundColor3              = Color3.fromRGB(105,105,105)
  1089.         btn4.TextColor3                    = Color3.fromRGB(255,255,255)
  1090.         text.BackgroundColor3              = Color3.fromRGB(105,105,105)
  1091.         text.TextColor3                    = Color3.fromRGB(255,255,255)
  1092.         text.PlaceholderColor3             = Color3.fromRGB(255,255,255)
  1093.         btn2.BackgroundColor3              = Color3.fromRGB(105,105,105)
  1094.         btn2.TextColor3                    = Color3.fromRGB(255,255,255)
  1095.         btn.BackgroundColor3               = Color3.fromRGB(255,255,255)
  1096.         screen.Frame.TextLabel.TextColor3  = Color3.fromRGB(255,255,255)
  1097.         screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(255,255,255)
  1098.         frame3.BackgroundColor3            = Color3.fromRGB(65,65,65)
  1099.         btnT.BackgroundColor3              = Color3.fromRGB(105,105,105)
  1100.         btnT2.BackgroundColor3             = Color3.fromRGB(105,105,105)
  1101.         screen.f3.btnT3.BackgroundColor3   = Color3.fromRGB(105,105,105)
  1102.         screen.f3.btnT4.BackgroundColor3   = Color3.fromRGB(105,105,105)
  1103.         screen.f3.textT.BackgroundColor3   = Color3.fromRGB(105,105,105)
  1104.         btnT.TextColor3                    = Color3.fromRGB(255,255,255)
  1105.         btnT2.TextColor3                   = Color3.fromRGB(255,255,255)
  1106.         screen.f3.btnT3.TextColor3         = Color3.fromRGB(255,255,255)
  1107.         screen.f3.btnT4.TextColor3         = Color3.fromRGB(255,255,255)
  1108.         screen.f3.textT.TextColor3         = Color3.fromRGB(255,255,255)
  1109.         screen.f3.labelT.TextColor3        = Color3.fromRGB(255,255,255)
  1110.         screen.f3.labelT2.TextColor3       = Color3.fromRGB(255,255,255)
  1111.         screen:WaitForChild("f2").BackgroundColor3         = Color3.fromRGB(65,65,65)
  1112.     end)
  1113.    
  1114.     local btnT3            = Instance.new("TextButton")
  1115.     btnT3.Parent           = frame3
  1116.     btnT3.Size             = UDim2.new(0, 55, 0, 25)
  1117.     btnT3.Position         = UDim2.new(0, 92, 0, 135)
  1118.     btnT3.Text             = "Basic"
  1119.     btnT3.BackgroundColor3 = Color3.fromRGB(186,85,211)
  1120.     btnT3.TextSize         = 11
  1121.     btnT3.Name             = "btnT3"
  1122.    
  1123.     btnT3.MouseButton1Click:Connect(function()
  1124.         frame.BackgroundColor3             = Color3.fromRGB(255,20,147)
  1125.         btn3.BackgroundColor3              = Color3.fromRGB(186,85,211)
  1126.         btn3.TextColor3                    = Color3.fromRGB(0,0,0)
  1127.         btn4.BackgroundColor3              = Color3.fromRGB(186,85,211)
  1128.         btn4.TextColor3                    = Color3.fromRGB(0,0,0)
  1129.         text.BackgroundColor3              = Color3.fromRGB(186,85,211)
  1130.         text.TextColor3                    = Color3.fromRGB(0,0,0)
  1131.         text.PlaceholderColor3             = Color3.fromRGB(65,65,65)
  1132.         btn2.BackgroundColor3              = Color3.fromRGB(186,85,211)
  1133.         btn2.TextColor3                    = Color3.fromRGB(0,0,0)
  1134.         btn.BackgroundColor3               = Color3.fromRGB(0,0,0)
  1135.         screen.Frame.TextLabel.TextColor3  = Color3.fromRGB(0,0,0)
  1136.         screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
  1137.         frame3.BackgroundColor3            = Color3.fromRGB(255,20,147)
  1138.         btnT.BackgroundColor3              = Color3.fromRGB(186,85,211)
  1139.         btnT2.BackgroundColor3             = Color3.fromRGB(186,85,211)
  1140.         btnT3.BackgroundColor3             = Color3.fromRGB(186,85,211)
  1141.         screen.f3.btnT4.BackgroundColor3   = Color3.fromRGB(186,85,211)
  1142.         screen.f3.textT.BackgroundColor3   = Color3.fromRGB(186,85,211)
  1143.         screen:WaitForChild("f2").BackgroundColor3         = Color3.fromRGB(255,20,147)
  1144.     end)
  1145.    
  1146.     local labelT           = Instance.new("TextLabel")
  1147.     labelT.Parent          = frame3
  1148.     labelT.BorderSizePixel = 0
  1149.     labelT.TextSize        = 14
  1150.     labelT.Text            = "Themes"
  1151.     labelT.Position        = UDim2.new(0, 120, 0, 15)
  1152.     labelT.Name            = "labelT"
  1153.    
  1154.     local textT             = Instance.new("TextBox")
  1155.     textT.Parent            = frame3
  1156.     textT.Size              = UDim2.new(0, 85, 0, 25)
  1157.     textT.Position          = UDim2.new(0, 78, 0, 174)
  1158.     textT.Text              = ""
  1159.     textT.PlaceholderText   = "Own"
  1160.     textT.TextSize          = 11
  1161.     textT.PlaceholderColor3 = Color3.fromRGB(65,65,65)
  1162.     textT.ClearTextOnFocus  = false
  1163.     textT.BackgroundColor3  = Color3.fromRGB(186,85,211)
  1164.     textT.Name              = "textT"
  1165.    
  1166.     local labelT2           = Instance.new("TextLabel")
  1167.     labelT2.Parent          = frame3
  1168.     labelT2.BorderSizePixel = 0
  1169.     labelT2.Text            = "Example:\nblue"
  1170.     labelT2.TextSize        = 10
  1171.     labelT2.Position        = UDim2.new(0, 200, 0, 186)
  1172.     labelT2.Name            = "labelT2"
  1173.    
  1174.     textT.FocusLost:Connect(function(ent)
  1175.         if ent then
  1176.             if textT.Text == "blue" then
  1177.                 frame.BackgroundColor3             = Color3.fromRGB(0,0,255)
  1178.                 btn3.BackgroundColor3              = Color3.fromRGB(0,191,255)
  1179.                 btn3.TextColor3                    = Color3.fromRGB(0,0,0)
  1180.                 btn4.BackgroundColor3              = Color3.fromRGB(0,191,255)
  1181.                 btn4.TextColor3                    = Color3.fromRGB(0,0,0)
  1182.                 text.BackgroundColor3              = Color3.fromRGB(0,191,255)
  1183.                 text.TextColor3                    = Color3.fromRGB(0,0,0)
  1184.                 text.PlaceholderColor3             = Color3.fromRGB(65,65,65)
  1185.                 btn2.BackgroundColor3              = Color3.fromRGB(0,191,255)
  1186.                 btn2.TextColor3                    = Color3.fromRGB(0,0,0)
  1187.                 btn.BackgroundColor3               = Color3.fromRGB(0,0,0)
  1188.                 screen.Frame.TextLabel.TextColor3  = Color3.fromRGB(0,0,0)
  1189.                 screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
  1190.                 frame3.BackgroundColor3            = Color3.fromRGB(0,0,255)
  1191.                 btnT.BackgroundColor3              = Color3.fromRGB(0,191,255)
  1192.                 btnT2.BackgroundColor3             = Color3.fromRGB(0,191,255)
  1193.                 btnT3.BackgroundColor3             = Color3.fromRGB(0,191,255)
  1194.                 screen.f3.btnT4.BackgroundColor3   = Color3.fromRGB(0,191,255)
  1195.                 textT.BackgroundColor3             = Color3.fromRGB(0,191,255)
  1196.                 screen:WaitForChild("f2").BackgroundColor3         = Color3.fromRGB(0,0,255)
  1197.             elseif textT.Text == "red" then
  1198.                 frame.BackgroundColor3             = Color3.fromRGB(245,0,0)
  1199.                 btn3.BackgroundColor3              = Color3.fromRGB(253,98,98)
  1200.                 btn3.TextColor3                    = Color3.fromRGB(0,0,0)
  1201.                 btn4.BackgroundColor3              = Color3.fromRGB(253,98,98)
  1202.                 btn4.TextColor3                    = Color3.fromRGB(0,0,0)
  1203.                 text.BackgroundColor3              = Color3.fromRGB(253,98,98)
  1204.                 text.TextColor3                    = Color3.fromRGB(0,0,0)
  1205.                 text.PlaceholderColor3             = Color3.fromRGB(65,65,65)
  1206.                 btn2.BackgroundColor3              = Color3.fromRGB(253,98,98)
  1207.                 btn2.TextColor3                    = Color3.fromRGB(0,0,0)
  1208.                 btn.BackgroundColor3               = Color3.fromRGB(0,0,0)
  1209.                 screen.Frame.TextLabel.TextColor3  = Color3.fromRGB(0,0,0)
  1210.                 screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
  1211.                 frame3.BackgroundColor3            = Color3.fromRGB(245,0,0)
  1212.                 btnT.BackgroundColor3              = Color3.fromRGB(253,98,98)
  1213.                 btnT2.BackgroundColor3             = Color3.fromRGB(253,98,98)
  1214.                 btnT3.BackgroundColor3             = Color3.fromRGB(253,98,98)
  1215.                 screen.f3.btnT4.BackgroundColor3   = Color3.fromRGB(253,98,98)
  1216.                 textT.BackgroundColor3             = Color3.fromRGB(253,98,98)
  1217.                 screen:WaitForChild("f2").BackgroundColor3         = Color3.fromRGB(245,0,0)
  1218.             elseif textT.Text == "green" then
  1219.                 frame.BackgroundColor3             = Color3.fromRGB(50,205,50)
  1220.                 btn3.BackgroundColor3              = Color3.fromRGB(124,252,0)
  1221.                 btn3.TextColor3                    = Color3.fromRGB(0,0,0)
  1222.                 btn4.BackgroundColor3              = Color3.fromRGB(124,252,0)
  1223.                 btn4.TextColor3                    = Color3.fromRGB(0,0,0)
  1224.                 text.BackgroundColor3              = Color3.fromRGB(124,252,0)
  1225.                 text.TextColor3                    = Color3.fromRGB(0,0,0)
  1226.                 text.PlaceholderColor3             = Color3.fromRGB(65,65,65)
  1227.                 btn2.BackgroundColor3              = Color3.fromRGB(124,252,0)
  1228.                 btn2.TextColor3                    = Color3.fromRGB(0,0,0)
  1229.                 btn.BackgroundColor3               = Color3.fromRGB(0,0,0)
  1230.                 screen.Frame.TextLabel.TextColor3  = Color3.fromRGB(0,0,0)
  1231.                 screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
  1232.                 frame3.BackgroundColor3            = Color3.fromRGB(50,205,50)
  1233.                 btnT.BackgroundColor3              = Color3.fromRGB(124,252,0)
  1234.                 btnT2.BackgroundColor3             = Color3.fromRGB(124,252,0)
  1235.                 btnT3.BackgroundColor3             = Color3.fromRGB(124,252,0)
  1236.                 screen.f3.btnT4.BackgroundColor3   = Color3.fromRGB(124,252,0)
  1237.                 textT.BackgroundColor3             = Color3.fromRGB(124,252,0)
  1238.                 screen:WaitForChild("f2").BackgroundColor3         = Color3.fromRGB(50,205,50)
  1239.             elseif textT.Text == "purple" then
  1240.                 frame.BackgroundColor3             = Color3.fromRGB(138,43,226)
  1241.                 btn3.BackgroundColor3              = Color3.fromRGB(218,112,214)
  1242.                 btn3.TextColor3                    = Color3.fromRGB(0,0,0)
  1243.                 btn4.BackgroundColor3              = Color3.fromRGB(218,112,214)
  1244.                 btn4.TextColor3                    = Color3.fromRGB(0,0,0)
  1245.                 text.BackgroundColor3              = Color3.fromRGB(218,112,214)
  1246.                 text.TextColor3                    = Color3.fromRGB(0,0,0)
  1247.                 text.PlaceholderColor3             = Color3.fromRGB(65,65,65)
  1248.                 btn2.BackgroundColor3              = Color3.fromRGB(218,112,214)
  1249.                 btn2.TextColor3                    = Color3.fromRGB(0,0,0)
  1250.                 btn.BackgroundColor3               = Color3.fromRGB(0,0,0)
  1251.                 screen.Frame.TextLabel.TextColor3  = Color3.fromRGB(0,0,0)
  1252.                 screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
  1253.                 frame3.BackgroundColor3            = Color3.fromRGB(138,43,226)
  1254.                 btnT.BackgroundColor3              = Color3.fromRGB(218,112,214)
  1255.                 btnT2.BackgroundColor3             = Color3.fromRGB(218,112,214)
  1256.                 btnT3.BackgroundColor3             = Color3.fromRGB(218,112,214)
  1257.                 screen.f3.btnT4.BackgroundColor3   = Color3.fromRGB(218,112,214)
  1258.                 textT.BackgroundColor3             = Color3.fromRGB(218,112,214)
  1259.                 screen:WaitForChild("f2").BackgroundColor3         = Color3.fromRGB(138,43,226)
  1260.             elseif textT.Text == "orange" then
  1261.                 frame.BackgroundColor3             = Color3.fromRGB(255,69,0)
  1262.                 btn3.BackgroundColor3              = Color3.fromRGB(255,165,0)
  1263.                 btn3.TextColor3                    = Color3.fromRGB(0,0,0)
  1264.                 btn4.BackgroundColor3              = Color3.fromRGB(255,165,0)
  1265.                 btn4.TextColor3                    = Color3.fromRGB(0,0,0)
  1266.                 text.BackgroundColor3              = Color3.fromRGB(255,165,0)
  1267.                 text.TextColor3                    = Color3.fromRGB(0,0,0)
  1268.                 text.PlaceholderColor3             = Color3.fromRGB(65,65,65)
  1269.                 btn2.BackgroundColor3              = Color3.fromRGB(255,165,0)
  1270.                 btn2.TextColor3                    = Color3.fromRGB(0,0,0)
  1271.                 btn.BackgroundColor3               = Color3.fromRGB(0,0,0)
  1272.                 screen.Frame.TextLabel.TextColor3  = Color3.fromRGB(0,0,0)
  1273.                 screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
  1274.                 frame3.BackgroundColor3            = Color3.fromRGB(255,69,0)
  1275.                 btnT.BackgroundColor3              = Color3.fromRGB(255,165,0)
  1276.                 btnT2.BackgroundColor3             = Color3.fromRGB(255,165,0)
  1277.                 btnT3.BackgroundColor3             = Color3.fromRGB(255,165,0)
  1278.                 screen.f3.btnT4.BackgroundColor3   = Color3.fromRGB(255,165,0)
  1279.                 textT.BackgroundColor3             = Color3.fromRGB(255,165,0)
  1280.                 screen:WaitForChild("f2").BackgroundColor3         = Color3.fromRGB(255,69,0)
  1281.             elseif textT.Text == "yellow" then
  1282.                 frame.BackgroundColor3             = Color3.fromRGB(241,249,0)
  1283.                 btn3.BackgroundColor3              = Color3.fromRGB(234,238,117)
  1284.                 btn3.TextColor3                    = Color3.fromRGB(0,0,0)
  1285.                 btn4.BackgroundColor3              = Color3.fromRGB(234,238,117)
  1286.                 btn4.TextColor3                    = Color3.fromRGB(0,0,0)
  1287.                 text.BackgroundColor3              = Color3.fromRGB(234,238,117)
  1288.                 text.TextColor3                    = Color3.fromRGB(0,0,0)
  1289.                 text.PlaceholderColor3             = Color3.fromRGB(65,65,65)
  1290.                 btn2.BackgroundColor3              = Color3.fromRGB(234,238,117)
  1291.                 btn2.TextColor3                    = Color3.fromRGB(0,0,0)
  1292.                 btn.BackgroundColor3               = Color3.fromRGB(0,0,0)
  1293.                 screen.Frame.TextLabel.TextColor3  = Color3.fromRGB(0,0,0)
  1294.                 screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
  1295.                 frame3.BackgroundColor3            = Color3.fromRGB(241,249,0)
  1296.                 btnT.BackgroundColor3              = Color3.fromRGB(234,238,117)
  1297.                 btnT2.BackgroundColor3             = Color3.fromRGB(234,238,117)
  1298.                 btnT3.BackgroundColor3             = Color3.fromRGB(234,238,117)
  1299.                 screen.f3.btnT4.BackgroundColor3   = Color3.fromRGB(234,238,117)
  1300.                 textT.BackgroundColor3             = Color3.fromRGB(234,238,117)
  1301.                 screen:WaitForChild("f2").BackgroundColor3 = Color3.fromRGB(241,249,0)
  1302.             elseif textT.Text == "pink" then
  1303.                 frame.BackgroundColor3             = Color3.fromRGB(255,127,247)
  1304.                 btn3.BackgroundColor3              = Color3.fromRGB(255,170,249)
  1305.                 btn3.TextColor3                    = Color3.fromRGB(0,0,0)
  1306.                 btn4.BackgroundColor3              = Color3.fromRGB(255,170,249)
  1307.                 btn4.TextColor3                    = Color3.fromRGB(0,0,0)
  1308.                 text.BackgroundColor3              = Color3.fromRGB(255,170,249)
  1309.                 text.TextColor3                    = Color3.fromRGB(0,0,0)
  1310.                 text.PlaceholderColor3             = Color3.fromRGB(65,65,65)
  1311.                 btn2.BackgroundColor3              = Color3.fromRGB(255,170,249)
  1312.                 btn2.TextColor3                    = Color3.fromRGB(0,0,0)
  1313.                 btn.BackgroundColor3               = Color3.fromRGB(0,0,0)
  1314.                 screen.Frame.TextLabel.TextColor3  = Color3.fromRGB(0,0,0)
  1315.                 screen.Frame.TextLabel2.TextColor3 = Color3.fromRGB(0,0,0)
  1316.                 frame3.BackgroundColor3            = Color3.fromRGB(255,127,247)
  1317.                 btnT.BackgroundColor3              = Color3.fromRGB(255,170,249)
  1318.                 btnT2.BackgroundColor3             = Color3.fromRGB(255,170,249)
  1319.                 btnT3.BackgroundColor3             = Color3.fromRGB(255,170,249)
  1320.                 screen.f3.btnT4.BackgroundColor3   = Color3.fromRGB(255,170,249)
  1321.                 textT.BackgroundColor3             = Color3.fromRGB(255,170,249)
  1322.                 screen:WaitForChild("f2").BackgroundColor3         = Color3.fromRGB(255,127,247)
  1323.             end
  1324.         end
  1325.     end)
  1326.    
  1327.     local btnT4            = Instance.new("TextButton")
  1328.     btnT4.Parent           = frame3
  1329.     btnT4.Size             = UDim2.new(0, 55, 0, 25)
  1330.     btnT4.Position         = UDim2.new(0, 92, 0, 214)
  1331.     btnT4.Text             = "Clear"
  1332.     btnT4.BackgroundColor3 = Color3.fromRGB(186,85,211)
  1333.     btnT4.TextSize         = 11
  1334.     btnT4.Name             = "btnT4"
  1335.    
  1336.     btnT4.MouseButton1Click:Connect(function()
  1337.         textT.Text = ""
  1338.     end)
  1339. end)
  1340.  
  1341. local label           = Instance.new("TextLabel")
  1342. label.Parent          = frame
  1343. label.Text            = "x0y0zkidd's\nadmin"
  1344. label.TextSize        = 16
  1345. label.BorderSizePixel = 0
  1346. label.Position        = UDim2.new(0, 137, 0, 310)
  1347.  
  1348. local labelP           = Instance.new("TextLabel")
  1349. labelP.Parent          = frame
  1350. labelP.Text            = "Pray for\nTubers93!"
  1351. labelP.TextSize        = 16
  1352. labelP.BorderSizePixel = 0
  1353. labelP.Position        = UDim2.new(0, 137, 0, 250)
  1354. labelP.Name            = "TextLabel2"
  1355.  
  1356. end
  1357.  
  1358. plr.CharacterAdded:Connect(function()
  1359.     task.wait(0.5)
  1360.     script()
  1361. end)
Add Comment
Please, Sign In to add comment