Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[ Script By:
- ██╗░░██╗███████╗██╗░░██╗░░██╗██╗██████╗░██████╗░
- ██║░░██║██╔════╝╚██╗██╔╝░██╔╝██║██╔══██╗██╔══██╗
- ███████║█████╗░░░╚███╔╝░██╔╝░██║██████╔╝██████╔╝
- ██╔══██║██╔══╝░░░██╔██╗░███████║██╔══██╗██╔══██╗
- ██║░░██║███████╗██╔╝╚██╗╚════██║██║░░██║██║░░██║
- ╚═╝░░╚═╝╚══════╝╚═╝░░╚═╝░░░░░╚═╝╚═╝░░╚═╝╚═╝░░╚═╝
- ]]
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local en = Instance.new("TextButton")
- local di = Instance.new("TextButton")
- local plr = game.Players.LocalPlayer.Character
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Frame.Position = UDim2.new(0, 0, 0.137592137, 0)
- Frame.Size = UDim2.new(0, 240, 0, 99)
- en.Name = "en"
- en.Parent = Frame
- en.BackgroundColor3 = Color3.fromRGB(97, 97, 97)
- en.Size = UDim2.new(0, 120, 0, 100)
- en.Font = Enum.Font.GothamBold
- en.Text = "Enabled"
- en.TextColor3 = Color3.fromRGB(255, 255, 255)
- en.TextSize = 14.000
- di.Name = "di"
- di.Parent = Frame
- di.BackgroundColor3 = Color3.fromRGB(97, 97, 97)
- di.Position = UDim2.new(0.5, 0, 0, 0)
- di.Size = UDim2.new(0, 120, 0, 100)
- di.Font = Enum.Font.GothamBold
- di.Text = "Disabled"
- di.TextColor3 = Color3.fromRGB(255, 255, 255)
- di.TextSize = 14.000
- en.MouseButton1Click:connect(function()
- plr.Humanoid.PlatformStand = true
- end)
- di.MouseButton1Click:connect(function()
- plr.Humanoid.PlatformStand = false
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement