local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/Robojini/Tuturial_UI_Library/main/UI_Template_1"))() local Window = Library.CreateLib("Frakki's Hide and seek GUI 1.1", "RJTheme3") local Tab = Window:NewTab("Main") local Section = Tab:NewSection("Coins") Section:NewButton("Collect all coins", "Teleport all coins to you", function() for i,v in pairs(game:GetDescendants()) do if v.Name == 'Credit' then v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame wait() end end end) local Section = Tab:NewSection("Teleport") Section:NewButton("Safe place teleport", "Teleports you to safe place ", function() game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Lobby.BasePlate.CFrame end) local Section = Tab:NewSection("LocalPlayer | Move slider again if you lost WS/JP") Section:NewSlider("WalkSpeed", "Changes your WalkSpeed", 200, 16, function(s) game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s end) Section:NewSlider("JumpPower", "Changes your JumpPower", 400, 50, function(s) game.Players.LocalPlayer.Character.Humanoid.JumpPower = s end) local Tab = Window:NewTab("Credits") local Section = Tab:NewSection("Scripted by Frakki#9546")