Advertisement
RML

Destruction-Simulator

RML
Dec 22nd, 2019
1,143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. spawn(function()
  2. while wait() do
  3. game.Players.LocalPlayer:Move(Vector3.new(1, 0, 0), true)
  4. wait(0.01)
  5. game.Players.LocalPlayer:Move(Vector3.new(-1, 0, 0), true)
  6. end
  7. end)
  8. for i1,v1 in pairs(game.workspace.Areas:GetChildren()) do
  9. local area = game.Players.LocalPlayer.CurrentArea.Value
  10. if v1.Name == area then
  11. for i2, v2 in pairs(v1:GetDescendants()) do
  12. if v2:IsA("Part") then
  13. for i,v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  14. if v.Name == "Stats" then
  15. local A_1 = 1576330809.0333
  16. local A_2 = v
  17. local A_3 = v2.Position
  18. for q,e in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  19. if e.Name == "Boom" then
  20. local A_4 = e
  21. local Event = game:GetService("ReplicatedStorage").Remotes.explodeRocket
  22. Event:FireServer(A_1, A_2, A_3, A_4)
  23. wait()
  24. game.workspace.sellSpot.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame*CFrame.new(0,-15,0)
  25. end
  26. end
  27. end
  28. end
  29. end
  30. end
  31. end
  32. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement