Advertisement
robloxhaxs

Super Doomspire script for inf crowns click if u needed

Apr 14th, 2020
6,595
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1. _G.enable = true
  2. local weapon = "Sword" -- Your Weapon Name
  3.  
  4. game:GetService("RunService").RenderStepped:Connect(function()
  5. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  6. end)
  7.  
  8. local vu = game:GetService("VirtualUser")
  9. while _G.enable and game:GetService("RunService").RenderStepped:wait() do
  10. for _,v in next, game:GetService("Players"):GetChildren() do
  11. if v ~= game:GetService("Players").LocalPlayer then
  12. local char = v.Character or workspace:FindFirstChild(v.Name)
  13. if char then
  14. pcall(function()
  15. if v.Team ~= game:GetService("Players").LocalPlayer.Team or v.Team == game:GetService('Teams').Spectators then
  16. char.Head.Anchored = true
  17. char.Head.Position = (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,2,-2.5) + Vector3.new(0, -0.2, -2.55)).p
  18. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0, 1000, 0)
  19. vu:Button1Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  20. vu:Button1Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  21. for _, k in pairs(char:GetChildren()) do
  22. if k:IsA("Tool") then
  23. k:Remove()
  24. end
  25. end
  26. for _, n in pairs(v.Backpack:GetChildren()) do
  27. if n:IsA("Tool") then
  28. n:Remove()
  29. end
  30. end
  31. else
  32. char.Head.Anchored = true
  33. char.Head.CFrame = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame + Vector3.new(0, 10, 0)
  34. end
  35. for _, c in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  36. if c.Name == weapon and c.ClassName == "Tool" then
  37. wait()
  38. game:GetService("Players").LocalPlayer.Character.Humanoid:EquipTool(c)
  39. end
  40. end
  41. end)
  42. end
  43. end
  44. end
  45. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement