Advertisement
kipr987

Dig out the backyard

Apr 7th, 2025
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.27 KB | None | 0 0
  1. for i, v in pairs(game:GetService("CoreGui"):GetChildren()) do
  2.     if v.Name == "ui" then
  3.         v:Destroy()
  4.     end
  5. end
  6. local UI = loadstring(game:HttpGetAsync("https://pastebin.com/raw/0589YkmB"))()
  7.  
  8. local window = UI:Window("Premium")
  9. local nif = UI:Notification("Welcome to", game:GetService("Players").LocalPlayer.Name, "Okay!")
  10. local aim = window:Tab("Main")
  11.  
  12. aim:Button("Statue",function()
  13.     for i, v in game:GetService("Workspace").SpawnedRooms:GetChildren() do
  14.         for i, f in v:GetChildren() do
  15.             if f.Name == "GoldenStatue" then
  16.                 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = f.Base.CFrame + f.Base.CFrame.LookVector * 15
  17.                 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = f.Base.CFrame + f.Base.CFrame.RightVector * 15
  18.                 repeat
  19.                     wait()
  20.                 until not f
  21.             end
  22.         end
  23.     end
  24. end)
  25.  
  26. aim:Button("Teleport to Home", function()
  27.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(473,32,-789)
  28. end)
  29.  
  30. _G.Noclip = false
  31. aim:Toggle("Noclip",false,function(value)
  32.     _G.Noclip = value
  33. end)
  34.  
  35. game:GetService("RunService").RenderStepped:Connect(function()
  36.     if _G.Noclip then
  37.         for i, v in game.Players.LocalPlayer.Character:GetChildren() do
  38.             if v:IsA("BasePart") then
  39.                 v.CanCollide = false
  40.             end
  41.         end
  42.     end
  43. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement