Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- This idiot used me for scripts and gave me this FE fire script.
- https://www.roblox.com/catalog/5205483683/Fiery-Fox-Shoulder-Pal
- roblox.com/promocodes and redeem "TARGETFOX2020"]]
- local player = game.Players.LocalPlayer
- local chara = player.Character
- game["Run Service"].RenderStepped:connect(function()
- settings().Physics.AllowSleep = false
- setsimulationradius(math.huge*math.huge,math.huge*math.huge)
- end)
- if chara:FindFirstChild("fff_fox") then
- local fox = chara["fff_fox"]
- local foxhandle = fox.Handle
- local smesh = foxhandle:FindFirstChildOfClass("SpecialMesh")
- local rp = chara.HumanoidRootPart
- local apos = Instance.new("AlignPosition")
- local aor = Instance.new("AlignOrientation")
- apos.Parent = foxhandle
- aor.Parent = rp
- apos.Responsiveness = 200 -- (start of align)
- apos.MaxForce = 9000000
- aor.Responsiveness = 200
- aor.MaxAngularVelocity = 9000000 -- (end of align)
- local at1 = Instance.new("Attachment")
- local at2 = Instance.new("Attachment")
- at1.Parent = foxhandle
- at2.Parent = rp
- apos.Attachment0 = at1
- apos.Attachment1 = at2
- aor.Attachment0 = at1
- aor.Attachment1 = at2
- for i, v in pairs(foxhandle:GetChildren()) do
- if v.Name == "RightShoulderAttachment" or v.Name == "AccessoryWeld" then
- v:Destroy()
- end
- end
- smesh:Destroy()
- end
Advertisement
Add Comment
Please, Sign In to add comment