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

can somebody give me the script that the sword will be automatically on the hand?

Asked by 4 years ago
Edited 4 years ago

can someone give me the script pleaseeee (when the players are spawn)

0
this isn't a request site. EmbeddedHorror 299 — 4y

2 answers

Log in to vote
-1
Answered by 4 years ago

Quickest way I can see is to place a script like this inside game.StarterPlayer.StarterCharacterScripts:

wait()
local Sword = script:FindFirstChildOfClass("Tool")

wait()

Sword:Clone().Parent = script.Parent

Course put the sword as a decendant of the script

Ad
Log in to vote
-1
Answered by 4 years ago

ok do this: put the sword into StarterPack . then put this into workspace:

game.Players.PlayerAdded:connect(function(p)
    wait(0.5)
    local sword = p.Backpack.ClassicSword
    sword.Parent = p.Character
end)

Answer this question