Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

How do I ONLY remove the ABILLITY from users to reset?

Asked by 8 years ago

I do NOT want the tools to glitch, and I've tried as many as possible. I'm waiting here for a answer.

I've even writen my own script! But didn't work.

0
Can you post your script on here? ISellCows 2 — 8y

1 answer

Log in to vote
0
Answered by 8 years ago

Well, this is pretty easy. What you need to do is rename the humanoid, but make sure the name isn't "Humanoid". But if you have killbricks in your game, you need to go back and rescript them. And if you have animations in your game for the player and you change the name of the humanoid, then those animations won't work.

I hope I helped - PickUpTheBeat1

Code:

game.Players.PlayerAdded:connect(function(player)
    player.CharacterAdded:connect(function(character)
        local h = character:FindFirstChild("Humanoid")
        if h then
            h.Name = "WhatYouWannaNameTheHumanoid" -- Change the WhatYouWannaNameTheHumanoid to what you want to name it.
        end
    end)
end)
0
BTW: Just tell me if you need the script for this. NeonicPlasma 181 — 8y
0
^ Could I have a copy? I really need it, but I don't know how to re-name parts... TheHospitalDev 1134 — 8y
Ad

Answer this question