SkeletalScripts

Succ

Jul 23rd, 2020
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.35 KB | None | 0 0
  1. getgenv().Settings = {
  2.     Autoswing    = false ,
  3.    
  4. }
  5.  
  6. spawn(function()
  7.     game:GetService("RunService").RenderStepped:Connect(function()
  8.         if getgenv().Settings.Autoswing == true then
  9.             local Event = game:GetService("ReplicatedStorage").Events["Tool Events"].Swing
  10.             Event:FireServer()
  11.         end
  12.     end)
  13. end)
Advertisement
Add Comment
Please, Sign In to add comment