Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 1. execute script 1
- 2. execute script 2
- 3. Press R
- 4. Click With you Pickaxe at the bed
- 5. Maybe works
- Note: It works sometimes and its very Buggy
- Script 1: Credits to OreZAKung
- Code:
- while wait() do
- for i,v in pairs(workspace.Map.Blocks:GetChildren()) do
- v:SetAttribute("Health",0)
- end
- end
- Script 2:
- Code:
- game:GetService("UserInputService").InputBegan:connect(
- function(inputObject, gameProcessedEvent)
- if inputObject.KeyCode == Enum.KeyCode.R then
- for d, f in pairs(game:GetService("Workspace").Map.Blocks:GetChildren()) do
- if f:IsA("MeshPart") then
- for i = 0, 1, .01 do
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame:lerp(f.CFrame, i)
- wait(.1)
- end
- end
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement