Advertisement
MRobbin99

Warrior Sim, soft exploit

Jan 31st, 2019
1,804
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. -- this scripts teleports you to all the coins/chests in first zone
  2. -- game link https://www.roblox.com/games/2716845201/CODE-Warrior-Simulator
  3. plr = game.Players.LocalPlayer
  4. hum = plr.Character.HumanoidRootPart
  5. local modelList = game.Workspace.Map.Grassland.CoinStorage:GetChildren()
  6. for i = 1, #modelList do
  7. hum.CFrame = modelList[i].PrimaryPart.CFrame
  8. hum.CFrame = hum.CFrame + Vector3.new(0,1,0)
  9. wait()
  10. end
  11. -- made by fleebmans
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement