Advertisement
MRobbin99

wip attackonlegends

May 1st, 2019
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. -- gamelink https://www.roblox.com/games/2648001818/Attack-on-Legends-BETA
  2.  
  3. list = game:GetService("Workspace")["TitanArchive"]:GetChildren()
  4. player = game:GetService("Players").LocalPlayer.Character
  5. if player:FindFirstChild("Hitbox") ~= nil then
  6. player.Hitbox:Destroy()
  7. end
  8. for i = 1, #list do
  9. if list[i]:FindFirstChild("Hitboxes") ~= nil then
  10. if list[i]["Hitboxes"]:FindFirstChild("Nape") ~= nil then
  11. while list[i]:FindFirstChild("Hitboxes") ~= nil do
  12. nape = list[i]["Hitboxes"]:FindFirstChild("Nape")
  13. nape.Transparency = 0
  14. nape.Size = Vector3.new(50,50,50)
  15. player.HumanoidRootPart.CFrame = nape.CFrame
  16. wait(.1)
  17. end
  18. end
  19. end
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement