Advertisement
dady172172

Royal High Collector

Nov 7th, 2019
5,226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.90 KB | None | 0 0
  1. --https://www.roblox.com/games/735030788/Royale-High
  2. --https://github.com/dady172172/Roblox-Cheats
  3. --just teleports you to the diamonds in the school area and will teleport you to the spiders you can collect in the main lobby. script can tell the difference between the two.
  4. _G.Collector = true
  5. while _G.Collector == true do
  6.     Wait(.01)
  7.     local diamond = game:GetService("Workspace"):FindFirstChild("diamond")
  8.     local specialdiamond = game:GetService("Workspace"):FindFirstChild("specialdiamond")
  9.     if diamond ~= nil then
  10.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = diamond.CFrame  
  11.     end
  12.     if specialdiamond ~= nil then
  13.         for _,v in pairs(game:GetService("Workspace"):GetChildren()) do
  14.             if v.Name == "specialdiamond" then
  15.                 if v.Transparency == 0 then
  16.                     wait()             
  17.                     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame  
  18.                 end
  19.             end
  20.         end
  21.     end
  22. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement