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

anyone have a code for premium benefits?

Asked by 2 years ago

i want to create a game where people can do more stuff with premium, does anyone have that?

1 answer

Log in to vote
0
Answered by
extrorobo 104
2 years ago

01 if player.MembershipType == Enum.MembershipType.None then 02 player.CharacterAdded:connect(function(char) 03 local humanoid = char:findFirstChild ("Humanoid") 04 if humanoid then 05 humanoid.MaxHealth = 1000 06 humanoid.Health = humanoid.MaxHealth 07 humanoid.WalkSpeed = 200 08 humanoid.JumpPower = 100 09 local confetti = Instance.new("Sparkles", char:findFirstChild("HumanoidRootPart")) 10 end 11 end) 12 end

Ad

Answer this question