Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ---Fast Reset V2!!!
- local k = "ButtonL2" --- Left Trigger
- local u = game:GetService("UserInputService")
- local pad = workspace.Lobby.Entrance
- local AlreadyPressed = false
- u.InputBegan:Connect(function(input)
- if input.KeyCode == Enum.KeyCode[k] then
- if AlreadyPressed == true then return end
- AlreadyPressed = true
- local newPos = CFrame.new(83, -86, -9)
- local GetBattle = CFrame.new(97, -85, 1)
- local CurrentPos = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
- local args = {
- [1] = "reset"
- }
- game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("Customization"):FireServer(unpack(args))
- wait(0.7)
- pad.Position = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
- wait(0.4)
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CurrentPos
- pad.Position = Vector3.new(97, -85, 1)
- end
- wait(0.1)
- AlreadyPressed = false
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement