ExamV1

Sandhurst Military Academy Script (ROBLOX)

Mar 12th, 2021 (edited)
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.42 KB | None | 0 0
  1. --https://www.roblox.com/games/270499015/Sandhurst-Military-Academy?nl=true&nl=true&nl=true&nl=true#
  2. --This will make your character flash to afk true n false in a loop.
  3.  
  4. while wait(0.1) do
  5. local args = {
  6.     [1] = true
  7. }
  8.  
  9. game:GetService("ReplicatedStorage").AFKEvent:FireServer(unpack(args))
  10. wait(0.1)
  11. local args = {
  12.     [1] = false
  13. }
  14.  
  15. game:GetService("ReplicatedStorage").AFKEvent:FireServer(unpack(args))
  16. end
Add Comment
Please, Sign In to add comment