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

local in serverscriptservice is not defined?

Asked by 5 years ago

hey everyone, im making a simulator game, but when i click it says the local i made is a nil value:

01game.Players.PlayerAdded:Connect(function(player)
02    print("leaderstats")
03    local leaderstats = Instance.new('IntValue', player)
04    leaderstats.Name = 'leaderstats'
05 
06    print("leaderstats")
07    local IQ = Instance.new("IntValue", leaderstats)
08    IQ.Name = "IQ"
09    IQ.Value = 1000
10end)
11 
12 
13local ReplicatedStorage = game:GetService("ReplicatedStorage")
14 
15local ServerStorage = game:GetService("ServerStorage")
View all 26 lines...

do you know why it says its a nil value? please tell me :)

1 answer

Log in to vote
0
Answered by 5 years ago
Edited 5 years ago

Try this.

01game.Players.PlayerAdded:Connect(function(player)
02    print("leaderstats")
03    local leaderstats = Instance.new('IntValue', player)
04    leaderstats.Name = 'leaderstats'
05 
06 
07    print("leaderstats")
08    local IQ = Instance.new("IntValue", leaderstats)
09    IQ.Name = "IQ"
10    IQ.Value = 1000
11end)
12 
13 
14local ReplicatedStorage = game:GetService("ReplicatedStorage")
15 
View all 28 lines...

The issue was you trying to trying to use a variable to create an IntValue, not modify it. By adding a new definition of IQ the script works.

0
oh ok thank you so much :D you just made a nice game possible for roblox :) sinbadxfan05 3 — 5y
Ad

Answer this question