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

I want to make it so when a user touches a SpawnLocation they recieve a tool?

Asked by 11 years ago

Help here please.im having a hard time doing this -.-

3 answers

Log in to vote
1
Answered by
Cizox 80
11 years ago
01debounce = false
02script.Parent.Touched:connect(function(hit)
03local player = game.Players:GetPlayerFromCharacter(hit.Parent)
04if player and not debounce then
05debounce = true
06local tool = game.ServerStorage:findFirstChild('NAMEOFTOOLHERE')
07if tool then
08local toolClone = tool:Clone()
09toolClone.Parent = player.Backpack
10debounce = false
11end
12end
13end)

Put this in a script. Put the script inside the SpawnLocation.

Ad
Log in to vote
0
Answered by 11 years ago

Get the "CREATE YOUR OWN GIVER!!!" Model, take the script out of the "PUT THE WEAPON IN THIS BRICK" Put that script in the SpawnLocation and then continue doing what you were doing.

Log in to vote
0
Answered by 11 years ago
1Alright first its simple. make a tool giver like search in the free models tool giver of whatever you want then make that block transparent put it on top of the spawn and when they spawn they have a tool :D
2 
3 
4- Muslim Of Lmad

Answer this question