Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- HOW TO MAKE TEMPORARY FAKE DEATH!!! Roblox Studio Tutorial BY BLOXIANCODE youtube.com/c/BloxianCode
- -- Tutorial: https://youtu.be/WS23QeL8mV8
- local UserInputService = game:GetService("UserInputService")
- UserInputService.InputBegan:Connect(function(input, gameProcessedEvent)
- if not gameProcessedEvent then
- if input.KeyCode == Enum.KeyCode.F then --when the player presses F it will do the fake death. You can change F to another key if you want
- game.ReplicatedStorage.FakeDeath:FireServer()
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment