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

How can I add a script to the player if a datastore value is true whenever the player respawns?

Asked by 4 years ago
Edited 4 years ago

I am trying to add an aura script to the player whenever the player spawns if their datastore value of hasShock is true. I've tried a ton of different things but nothing seems to be working.

01local Players = game:GetService("Players")
02local shock
03tool = game.Lighting:findFirstChild("LightningAura")
04local function onCharacterAdded(character)
05    if(shock == true) then
06        print("this works")
07    else
08        print("still works")
09    end
10 
11end
12 
13Players.PlayerAdded:Connect(function(Player)
14    shock = Player.pscripts.hasShock.Value
15    if(Player.pscripts.hasShock.Value == true) then
View all 21 lines...

That's the first thing I tried but it always said the player doesn't have shock.

~~~~~~~~~~~~~~~~~

tool = game.Lighting:findFirstChild("LightningAura") -- Put the name of your tool here.

game.Players.PlayerAdded:Connect(function(player) local pscripts = Instance.new("Folder") pscripts.Name = "pscripts" pscripts.Parent = player

01local hasShock = Instance.new("BoolValue")
02--Change below for name
03hasShock.Name = "hasShock"
04-- Default value
05hasShock.Value = false
06hasShock.Parent = pscripts
07 
08--Again name and default
09local hasSSJ = Instance.new("BoolValue")
10hasSSJ.Name = "hasSSJ"
11hasSSJ.Value = false
12hasSSJ.Parent = pscripts
13 
14player.CharacterAdded:Connect(function(Character)
15    Character:WaitForChild('Humanoid').Died:Connect(function()
View all 25 lines...

end) ~~~~~~~~~~~~~~~~~

This is the second thing I tried. It got to the got this far print statement every time but it didn't get put in the players inventory. Is there another way to do this? Or is there a way to fix one of the other ones.

1 answer

Log in to vote
0
Answered by
Oxprem 140
4 years ago

Now, Im no Scripting Expert, but I think your problem is happening is because you are giving the tool to the player when they are dead. Perhaps try creating a value inside the player, then activating it whenever the Player dies, waiting until the player respawns, and checking if the player has the value set to true. If the value is set to true, clone the tool into the player's avatar, like this:

01player.CharacterAdded:Connect(function(Character)
02    local GiveTool = Instance.new("BoolValue")
03    GiveTool.Name = "givetool"
04    GiveTool.Value = false
05    GiveTool.Parent = player
06    Character:WaitForChild('Humanoid').Died:Connect(function()
07        print("dead")
08        if(hasShock.Value == true) then
09            print("Got this far")
10            player.givetool.Value = true
11        end
12 
13    end)
14    if  player.givetool.Value == true then
15        local a = tool:clone()
16            a.Parent = player.Character
17    end
18end)

Now, like I mentioned before, Im not Scripting Expert, so this may or may not work for you.

NOTE: This is for lines 14 - 25

0
Thanks so much! This helped! ericzebaws1 2 — 4y
Ad

Answer this question