Advertisement
Guest User

Shouting Sim Script

a guest
Mar 20th, 2019
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. local dbounce = false
  2. mouse = game.Players.LocalPlayer:GetMouse()
  3. local KeyToPressToStop_Start = 'z'
  4. mouse.KeyDown:connect(function(Key)
  5. if Key:lower() == KeyToPressToStop_Start:lower() then
  6. dbounce = not dbounce
  7. end
  8. end)
  9. rs = game:GetService'RunService'
  10. rs.RenderStepped:connect(function()
  11. game:GetService("ReplicatedStorage").Remotes.Yell:InvokeServer(unpack({}))
  12. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement