First, Vector3.new(spawnpad)
is traduced to Vector3.new(Vector3.new(100, 0, 100))
, or what position the spawn pad is at. It should be simply spawnpad
, not Vector3.new(spawnpad)
.
And the second problem is that the HumanoidRootPart
's position is in the middle part of the character, so the Y position should be bigger with 3.
This is how the code should be:
02 | local sword = script.Parent.Parent.Parent.ClassicSword |
04 | script.Parent.Touched:connect( function (hit) |
05 | if hit.Parent:FindFirstChild( "Humanoid" ) then |
07 | local spawnpad = Vector 3. new(script.Parent.Parent.SpawnPad.Position.X,Vector 3. new(script.Parent.Parent.SpawnPad.Position.Y + 3 , Vector 3. new(script.Parent.Parent.SpawnPad.Position.Z) |
09 | sword:Clone().Parent = game.Players [ hit.Parent.Name ] .Backpack |
10 | hit.Parent.HumanoidRootPart.CFrame = CFrame.new(Vector 3. new(spawnpad)) |