Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- Credits to; HamstaGang
- Official thread; https://v3rmillion.net/showthread.php?tid=942169
- --------------------------------------------------------------------------------
- Script was provided from the official Demon Slayers Community Server; https://discord.gg/ADEVZ5R
- Official thread; https://v3rmillion.net/showthread.php?tid=936292 |<-- More info
- ]]--
- -- Grab all coins in the map.
- local LocalPlayer = game.Players.LocalPlayer
- local Mouse = LocalPlayer:GetMouse()
- Mouse.KeyDown:connect(function(KeyPressed)
- if KeyPressed == "x" then -- Change keybind here to whatever key works best for you.
- local coins = game:GetService("Workspace").CurrentMap.Coins:GetChildren()
- for i, coin in pairs(coins) do
- wait()
- LocalPlayer.Character.HumanoidRootPart.CFrame = coin.CFrame
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment