How to Disable Reset in Roblox
NickelingAlan路6 months agoEasiest way is to use a script in your game that disables the reset button. Add this code snippet to the ServerScriptService:
game:GetService('StarterGui'):SetCore('ResetButtonCallback', false).
Win Roblox gift cards by playing games on Playbite!
Playbite
500k winners and counting...
More Answers
You can disable the reset feature by implementing a custom script. Here's one way to do it:
local Players = game:GetService('Players')
Players.PlayerAdded:Connect(function(player)
player.CharacterAdded:Connect(function(character)
character:WaitForChild('Humanoid').BreakJointsOnDeath = false
end)
end).
Just put this code in a LocalScript:
game:GetService('StarterGui'):SetCore('ResetButtonCallback', false). Worked for me!
Honestly, just Google a 'no reset script' and copy-paste it into your game. Problem solved!
You can't disable the reset button in all cases, especially if Roblox updates break your custom scripts. Good luck!
馃憖 If you like Roblox...
Diego路3 hours agoThe brands referenced on this page are not sponsors of the rewards or otherwise affiliated with this company. The logos and other identifying marks attached are trademarks of and owned by each represented company and/or its affiliates. Please visit each company's website for additional terms and conditions.
People also want to know
Add an Answer