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

Can you help me with my Giver Script?

Asked by 9 years ago

I am using this script for my Giver:

01local debounce = false
02 
03function getPlayer(humanoid)
04local players = game.Players:children()
05for i = 1, #players do
06if players[i].Character.Humanoid == humanoid then return players[i] end
07end
08return nil
09end
10 
11function onTouch(part)
12 
13local human = part.Parent:findFirstChild("Humanoid")
14if (human ~= nil) and debounce == false then
15 
View all 30 lines...

This used to work but all the sudden it doesnt work at all :( I have no idea what is wrong can you guys help me?

0
Any error in the output? funyun 958 — 9y

1 answer

Log in to vote
2
Answered by 9 years ago

There are a couple of mistakes, I did a complete rewrite of the script, made it more efficient, and more organized and easier to read. Consider reading the wiki this will help you a lot.

I have explained each and every thing to the best of my ability, hope I make everything clear for you.

Here's the script:

01local debounce = false
02 
03function onTouch(hit)
04    local player = game.Players:GetPlayerFromCharacter(hit.Parent) -- getting the player from his character
05    if player.Character and not debounce then -- checking if the player's character exists and the debounce == false
06        local char = player.Character  -- defining character for later use
07        debounce = true
08        local weapon = game.Lighting.HyperLaser:clone()
09        weapon.Parent = char -- parenting the weapon to character
10        wait(5)
11        debounce = false
12    end
13end
14 
15script.Parent.Touched:connect(onTouch)

Note: I highly recommend using ServerStorage, rather than Lighting, but I used Lighting anyway since you already had it like that.

Hope it helps!

0
I have a custom backback that disables the OG backpack and that is why it doesnt work, is there anyway to make it compatable? TixyScripter 115 — 9y
0
I believe you can parent the tool to the player's character, that would make the character have it already equipped. Unequipping and equipping it again would belong to the custom backpack system you already made. AbsoluteAxiom 175 — 9y
0
Could you edit your script on how I would do that? Sorry I dont need to be demanding I jsut havnt really handle the Core GUI's at all.... TixyScripter 115 — 9y
0
Edited AbsoluteAxiom 175 — 9y
View all comments (2 more)
0
Thanks, It worked great! I really appreciate the fact that you told me what the script did, so I can learn from it! TixyScripter 115 — 9y
0
No problem! Happy I could help AbsoluteAxiom 175 — 9y
Ad

Answer this question