Guest User

SPARKLES

a guest
Nov 24th, 2020
2,022
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. --[[
  2. This clown used me for scripts and gave me a fire torso thing, i just changed
  3. the name of the hat to the desired hat that has effects.
  4. https://www.roblox.com/catalog/150381051/Spring-Fairy]]
  5.  
  6. local player = game.Players.LocalPlayer
  7. local chara = player.Character
  8.  
  9. game["Run Service"].RenderStepped:connect(function()
  10. settings().Physics.AllowSleep = false
  11. setsimulationradius(math.huge*math.huge,math.huge*math.huge)
  12. end)
  13.  
  14. if chara:FindFirstChild("SpringPixie") then
  15. local fox = chara["SpringPixie"]
  16. local foxhandle = fox.Handle
  17. local smesh = foxhandle:FindFirstChildOfClass("SpecialMesh")
  18. local rp = chara.HumanoidRootPart
  19. local apos = Instance.new("AlignPosition")
  20. local aor = Instance.new("AlignOrientation")
  21. apos.Parent = foxhandle
  22. aor.Parent = rp
  23. apos.Responsiveness = 200 -- (start of align)
  24. apos.MaxForce = 9000000
  25. aor.Responsiveness = 200
  26. aor.MaxAngularVelocity = 9000000 -- (end of align)
  27. local at1 = Instance.new("Attachment")
  28. local at2 = Instance.new("Attachment")
  29. at1.Parent = foxhandle
  30. at2.Parent = rp
  31. apos.Attachment0 = at1
  32. apos.Attachment1 = at2
  33. aor.Attachment0 = at1
  34. aor.Attachment1 = at2
  35. for i, v in pairs(foxhandle:GetChildren()) do
  36. if v.Name == "RightShoulderAttachment" or v.Name == "AccessoryWeld" then
  37. v:Destroy()
  38. end
  39. end
  40. smesh:Destroy()
  41. end
Advertisement
Add Comment
Please, Sign In to add comment