The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
GRAMMY Week GET ALL EVENT ITEMS SCRIPT script pastebin roblox
By GRAMMY Week GET ALL EVENT ITEMS SCRIPT on 2024-09-23 08:00 am | Syntax: LUA | Views: 9



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. --get all event items
  2. --https://www.roblox.com/games/8893378293/
  3.  
  4. --Andy_Wirus#5999
  5. --https://v3rmillion.net/showthread.php?tid=1164050
  6.  
  7. local Players = game:GetService("Players")
  8. local player = Players.LocalPlayer or Players.PlayerAdded:Wait()
  9.  
  10. local debounce = 0
  11.  
  12. local roller = game:GetService("ReplicatedStorage").Packages._Index["[email protected]"].knit.Services.PlaneLootService.RF.PurchaseRoll
  13. local quesion = game:GetService("ReplicatedStorage").Packages._Index["[email protected]"].knit.Services.QuestionService.RF.AnsweredQuestion
  14.  
  15. game:GetService("ReplicatedStorage").Packages._Index["[email protected]"].knit.Services.VehicleService.RE.ChangeVehicle:FireServer("Plane")
  16. player.Character.PrimaryPart.Anchored = true
  17.  
  18. for _, v in pairs(workspace.Collectables:GetChildren()) do
  19. task.spawn(v["__comm__"].RE.Collected.FireServer, v["__comm__"].RE.Collected)
  20. end
  21.  
  22. for _, v in pairs(workspace.QuestionBoards:GetChildren()) do
  23. for i = 1, 4 do
  24. task.spawn(quesion.InvokeServer, quesion, v, i)
  25. end
  26. end
  27.  
  28. while task.wait(1) do
  29. for _, v in pairs(workspace["Air Race"]:GetDescendants()) do
  30. if v:IsA("TouchTransmitter") and player.Character and player.Character.PrimaryPart then
  31. firetouchinterest(v.Parent, player.Character.PrimaryPart, 0)
  32. firetouchinterest(v.Parent, player.Character.PrimaryPart, 1)
  33. end
  34. end
  35. if debounce > 5 then
  36. for i = 1, 14 do
  37. task.spawn(roller.InvokeServer, roller, i)
  38. end
  39. debounce = 0
  40. end
  41. debounce += 1
  42. end



  • Recent Roblox Scripts