You can write your topic however you want, but you need to answer these questions:
-
What do you want to achieve? Keep it simple and clear!
I want to learn how I can make limb damage for future games. -
What is the issue? Include screenshots / videos if possible!
Script wont work
- What solutions have you tried so far? Did you look for solutions on the Developer Hub?
local Head = Instance.new("IntValue") -- Creating The Value For HeadLimb.
Head.Name = "HeadLimb"
Head.Parent = game.Players.LocalPlayer.Character.Head
local Torso = Instance.new("IntValue") -- Creating The Value For TorsoLimb.
Torso.Name = "TorsoLimb"
Torso.Parent = game.Players.LocalPlayer.Character.Torso
local RightArm = Instance.new("IntValue") -- Creating The Value For RightArmLimb.
Torso.Name = "TorsoLimb"
RightArm.Name = "RightArmLimb"
RightArm.Parent = game.Players.LocalPlayer.Character:FindFirstChild("Right Arm")
local LeftArm = Instance.new("IntValue") -- Creating The Value For LeftArmLimb.
LeftArm.Name = "LeftArmLimb"
LeftArm.Parent = game.Players.LocalPlayer.Character:FindFirstChild("Left Arm")
local RightLeg = Instance.new("IntValue") -- Creating The Value For RightLegLimb
RightLeg.Name = "RightLegLimb"
RightLeg.Parent = game.Players.LocalPlayer.Character:FindFirstChild("Right Leg")
local LeftLeg = Instance.new("IntValue") -- Creating The Value For LeftLegLimb
LeftLeg.Name = "LeftLegLimb"
LeftLeg.Parent = game.Players.LocalPlayer.Character:FindFirstChild("Left Leg")
warn("XxVanillaTR's Limb Health Kit Has Been Loaded!")
Head.Value = 100
Torso.Value = 100
RightArm.Value = 100
LeftArm.Value = 100
RightLeg.Value = 100
LeftLeg.Value = 100
After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!
This script was by XxVanillaTR. The script doesnt work when i add it to my game is their a certain location i need to put it? Is their any errors in the script