Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/Robojini/Tuturial_UI_Library/main/UI_Template_1"))()
- local Window = Library.CreateLib("made by p1rt", "RJTheme7")
- local Tab = Window:NewTab("WalkSpeed")
- local Section = Tab:NewSection("made by p1rt")
- Section:NewToggle("WalkSpeed toggle", " ", function(state)
- if state then
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 200
- else
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
- end
- end)
- Section:NewLabel("Discord Link")
- Section:NewButton("https://discord.gg/sBae3DayuK", "Printed link in F9", function()
- print("https://discord.gg/sBae3DayuK")
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement