Guest User

FE FIRE

a guest
Nov 24th, 2020
4,250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. --[[
  2. This idiot used me for scripts and gave me this FE fire script.
  3. https://www.roblox.com/catalog/5205483683/Fiery-Fox-Shoulder-Pal
  4. roblox.com/promocodes and redeem "TARGETFOX2020"]]
  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("fff_fox") then
  15. local fox = chara["fff_fox"]
  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