Created by Vanizzz
Features:
- Teleport to the exit
sethiddenproperty(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart,"CFrame",game:GetService("Workspace").CurrentMap.ExitDoor.Glow.CFrame)
- Collect all coins
for i, v in next, game:GetService("Workspace").CurrentMap.Coins:GetDescendants() do
if v.Name:match("Coin") then
sethiddenproperty(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart,"CFrame",v.CFrame)
end
end
- Collect all chests
for i, v in next, game:GetService("Workspace").CurrentMap.Loot:GetChildren() do
if v.Name:match("chest") then
sethiddenproperty(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart,"CFrame",v.Chest.CFrame)
wait(.2)
for i=1,2 do wait()
game:GetService("VirtualInputManager"):SendKeyEvent(true, "E", false, game)
end
end
end
- Collect all loot
for i, v in next, game:GetService("Workspace").CurrentMap.Loot:GetDescendants() do
if v.Name:match("LootProxBlock") then
sethiddenproperty(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart,"CFrame",v.CFrame)
wait(.2)
for i=1,2 do wait()
game:GetService("VirtualInputManager"):SendKeyEvent(true, "E", false, game)
end
end
end
- WalkSpeed config
local Power = 50
sethiddenproperty(game:GetService("Players").LocalPlayer.Character.Humanoid,"WalkSpeed",Power)
- JumpPower config
local Power = 100
setscriptable(game:GetService("Players").LocalPlayer.Character.Humanoid,"JumpPower",false)
sethiddenproperty(game:GetService("Players").LocalPlayer.Character.Humanoid,"JumpPower",Power)
ENJOY!