NewPlaer01005

Flint on touch [Not Fe,Client Side]

Feb 24th, 2024
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.57 KB | None | 0 0
  1. --[fling on touch was made by @NewPlayeRaltII(Team NewPlayer II)]--
  2. local player = game.Players.LocalPlayer
  3. local name = player.Name
  4. local character = Workspace:FindFirstChild(name)
  5. local hrp1 = character.HumanoidRootPart
  6. hrp1.Parent.Torso.Position = hrp1.Position + Vector3.new(0,5,0)
  7. hrp1.Touched:Connect(function(touch)
  8. local hrp2 = touch.Parent:FindFirstChild("HumanoidRootPart")
  9. hrp2.RotVelocity = Vector3.new (999999999,999999999,999999999)
  10. hrp2.Velocity = Vector3.new (999999999,999999999,999999999)
  11. hrp2.Orientation = Vector3.new (0,0,0)
  12. hrp2.Transparency = 0
  13. end)
Advertisement
Add Comment
Please, Sign In to add comment