FreeRobloxScripts1

FE Upside Down Script

Jun 17th, 2023 (edited)
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. -- If You Execute The Script You Character Is Normal But If Player See Is Look Like Upside Down
  2.  
  3. local lp = game:GetService("Players").LocalPlayer
  4. local c = lp.Character
  5. local hrp0 = c:FindFirstChild("HumanoidRootPart")
  6. local hrp1 = hrp0:Clone()
  7. c.Parent = nil
  8. hrp0.Parent = hrp1
  9. hrp0.RootJoint.Part0 = nil
  10. hrp1.Parent = c
  11. c.Parent = workspace
  12. local h = game:GetService("RunService").Heartbeat
  13. hrp0.Transparency = 0.5
  14. while h:Wait() and c and c.Parent do
  15. hrp0.CFrame = hrp1.CFrame
  16. hrp0.Orientation += Vector3.new(0, 0, 180)
  17. hrp0.Position -= Vector3.new(0, 1, 0)
  18. hrp0.Velocity = hrp1.Velocity
  19. end
Advertisement
Add Comment
Please, Sign In to add comment