Advertisement
dahpiglz

Point Rust Effect

Aug 13th, 2017
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. local mouse = game.Players.LocalPlayer:GetMouse()
  2.  
  3. function OnButton1Down(mouse)
  4. local target = mouse.Target
  5. target.Material = ("CorrodedMetal")
  6. target.Color = Color3.new("0,0,0")
  7. target.CanCollide = false
  8. target.Anchored = false
  9. target:BreakJoints()
  10. end
  11.  
  12. mouse.Button1Down:connect(function() OnButton1Down(mouse) end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement