Advertisement
Hex4rr

Platform Stand GUI

Jun 6th, 2020
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1. --[[ Script By:
  2.  
  3. ██╗░░██╗███████╗██╗░░██╗░░██╗██╗██████╗░██████╗░
  4. ██║░░██║██╔════╝╚██╗██╔╝░██╔╝██║██╔══██╗██╔══██╗
  5. ███████║█████╗░░░╚███╔╝░██╔╝░██║██████╔╝██████╔╝
  6. ██╔══██║██╔══╝░░░██╔██╗░███████║██╔══██╗██╔══██╗
  7. ██║░░██║███████╗██╔╝╚██╗╚════██║██║░░██║██║░░██║
  8. ╚═╝░░╚═╝╚══════╝╚═╝░░╚═╝░░░░░╚═╝╚═╝░░╚═╝╚═╝░░╚═╝
  9.  
  10. ]]
  11.  
  12. local ScreenGui = Instance.new("ScreenGui")
  13. local Frame = Instance.new("Frame")
  14. local en = Instance.new("TextButton")
  15. local di = Instance.new("TextButton")
  16. local plr = game.Players.LocalPlayer.Character
  17.  
  18. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  19. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  20.  
  21. Frame.Parent = ScreenGui
  22. Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  23. Frame.Position = UDim2.new(0, 0, 0.137592137, 0)
  24. Frame.Size = UDim2.new(0, 240, 0, 99)
  25.  
  26. en.Name = "en"
  27. en.Parent = Frame
  28. en.BackgroundColor3 = Color3.fromRGB(97, 97, 97)
  29. en.Size = UDim2.new(0, 120, 0, 100)
  30. en.Font = Enum.Font.GothamBold
  31. en.Text = "Enabled"
  32. en.TextColor3 = Color3.fromRGB(255, 255, 255)
  33. en.TextSize = 14.000
  34.  
  35. di.Name = "di"
  36. di.Parent = Frame
  37. di.BackgroundColor3 = Color3.fromRGB(97, 97, 97)
  38. di.Position = UDim2.new(0.5, 0, 0, 0)
  39. di.Size = UDim2.new(0, 120, 0, 100)
  40. di.Font = Enum.Font.GothamBold
  41. di.Text = "Disabled"
  42. di.TextColor3 = Color3.fromRGB(255, 255, 255)
  43. di.TextSize = 14.000
  44.  
  45. en.MouseButton1Click:connect(function()
  46. plr.Humanoid.PlatformStand = true
  47. end)
  48.  
  49.  
  50. di.MouseButton1Click:connect(function()
  51. plr.Humanoid.PlatformStand = false
  52. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement