i want to create a game where people can do more stuff with premium, does anyone have that?
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