Pretty cool! Just a tip with Instance.new(), it’s considered bad practice to set the parent when creating the instance like you do here:
--> Used to trigger Ragdoll
local RagdollValue = Instance.new("BoolValue", Character)
RagdollValue.Name = "IsRagdoll"
You should do this instead:
--> Used to trigger Ragdoll
local RagdollValue = Instance.new("BoolValue")
RagdollValue.Name = "IsRagdoll"
RagdollValue.Parent = Character
12 Likes