Advertisement
Aeyao

test

Aug 8th, 2018
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. local remote = NS([[
  2. local player = owner
  3.  
  4. local remote = Instance.new("RemoteEvent",script)
  5. remote.Name = "lamo"
  6.  
  7. function what()
  8. print("THIS IS WORKING")
  9. end
  10.  
  11. remote.OnServerEvent:connect(what)
  12.  
  13. ]], owner.Character):WaitForChild("lamo")
  14.  
  15. mouse = owner:GetMouse()
  16.  
  17. mouse.Button1Down:connect(function()
  18. remote:FireServer()
  19. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement