I was recently making a Roblox game called "The nutcracker". in Roblox, The only problem is when I was making a death screen I already know how to make a "Back to lobby" button,
local TeleportService = game:GetService("TeleportService")
local Place = Place id here
local player = game.Players.LocalPlayer
script.Parent.MouseButton1Click:connect(function()
TeleportService:Teleport(Place, player)
end)
But the problem is I don't know how to make a respawn button. Please Help!
Many Thanks, Cyber_gamer91 Game link here! https://web.roblox.com/games/4451993957/The-Nutcracker
You need to make a ScreenGui and insert a text button. Add a script and use the following code:
1 | function m 1 down() |
2 | script.Parent.Parent.Parent.Parent:LoadCharacter() |
3 | end |
4 |
5 | script.Parent.MouseButton 1 Down:connect(m 1 down) |
If you want to know how to load the gui when the player dies, let me know
Make a Text Button in a Screen GUI and put this inside a local script inside the Text Button:
1 | script.Parent.MouseButton 1 Click:Connect( function (player) |
2 | local char = game.Players.LocalPlayer |
3 | char:LoadCharacter() |
4 | end ) |
If this helped please accept this answer.
UI should not be touched by the server. Use FireServer() instead.
Learn more about remotes here.