goku13l

Supernatural simulator script

Mar 26th, 2023
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.56 KB | None | 0 0
  1. getgenv().AutoMuscle = true
  2. getgenv().AutoSell = true
  3.  
  4.  
  5. local Remote = game:GetService("ReplicatedStorage").RemoteEvent
  6.  
  7. while task.wait() do
  8.  if AutoMuscle then
  9.    local args = {
  10.        [1] = {
  11.            [1] = "GainMuscle"
  12.        }
  13.    }
  14.    
  15.    game:GetService("ReplicatedStorage").RemoteEvent:FireServer(unpack(args))    
  16.  end
  17.  
  18.    if AutoSell then
  19.        local args = {
  20.            [1] = {
  21.                [1] = "SellMuscle"
  22.            }
  23.        }
  24.        
  25.        game:GetService("ReplicatedStorage").RemoteEvent:FireServer(unpack(args))
  26.    end
  27. end
Add Comment
Please, Sign In to add comment