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

[SOLVED] "Unable to cast value to Object" when I'm just trying to fire a client with a RemoteEvent?

Asked by 6 years ago
Edited 6 years ago

So I'm trying to make so whenever the stats save in my game with DataStore, it fires a client to pop up a GUI that shows that it's autosaving. Whenever I run the game, it pops with the error of "Unable to cast value to Object" which makes no sense to me because it has nothing to do with a value or an object. I'm a little new to RemoteEvents still, but I mainly am still trying to figure out how Server to Client works and all.

Server:

001-- Had to cut the script short. It wouldn't let me post the question otherwise cause it was over 10,000 characters.
002        while wait(20) do
003            savingGui:FireClient("saving") -- This is where it says the problem is.
004            if limitBreaker.Value ~= true then
005                print("Saving "..player.Name.."'s Data . . .")
006                if limitBreaker.Value ~= true then
007                    slds:SetAsync(player.UserId,player.Stats.Strength.StrengthLevel.Value)
008                    sxpds:SetAsync(player.UserId,player.Stats.Strength.StrengthXp.Value)
009                end
010 
011                if limitBreaker.Value ~= true then
012                    jlds:SetAsync(player.UserId,player.Stats.Jump.JumpLevel.Value)
013                    jxpds:SetAsync(player.UserId,player.Stats.Jump.JumpXp.Value)
014                end
015 
View all 115 lines...

Client:

01local repStorage = game:GetService("ReplicatedStorage")
02local saveGui = repStorage:WaitForChild("Stats-Related"):WaitForChild("SavingGui")
03 
04local saveImage = script.Parent
05local text = saveImage:WaitForChild("TextLabel")
06 
07local enabled = false
08 
09local openPose = UDim2.new(0.81, 0,0.022, 0)
10local closePose = UDim2.new(1, 0,0.022, 0)
11 
12saveGui.OnClientEvent:Connect(function(stateOfSaving)
13    if stateOfSaving == "saving" then
14        enabled = true
15        saveImage:TweenPosition(openPose,"Out","Quart",1)
View all 34 lines...

Sorry for the long server script, but just look at the comments to find where it says the problem is. Any help is appreciated though!

1 answer

Log in to vote
1
Answered by 6 years ago
Edited 6 years ago

So, im currently at work but you should try this. Just change these 2 Lines in your script.

(Line 3)

You had it like this

1savingGui:FireClient("saving")

But instead, try to do it like this.

1Request = saving
2savingGui:FireClient(Request)

and for (Line 114),(Line 55) do it like this

1Request = save
2savingGui:FireClient(Request)

In Localscript:

01local repStorage = game:GetService("ReplicatedStorage")
02local saveGui = repStorage:WaitForChild("Stats-Related"):WaitForChild("SavingGui")
03 
04local saveImage = script.Parent
05local text = saveImage:WaitForChild("TextLabel")
06 
07 
08 
09local openPose = UDim2.new(0.81, 0,0.022, 0)
10local closePose = UDim2.new(1, 0,0.022, 0)
11 
12saveGui.OnClientEvent:Connect(function(Request)
13    if Request == "saving" then
14 
15        saveImage:TweenPosition(openPose,"Out","Quart",1)
View all 34 lines...
0
Mk I'll try it. Knineteen19 307 — 6y
0
I Edit it, try it now. Paintertable 171 — 6y
0
Still shows the same error. Knineteen19 307 — 6y
0
Ah mk. Knineteen19 307 — 6y
View all comments (9 more)
0
Yeah, it just shows the same error. Knineteen19 307 — 6y
0
Wait, I figured it out. Instead of savingGui:FireClient("saving") I needed to include player in it like savingGui:FireClient(player,"saving") Knineteen19 307 — 6y
0
Try it with savingGui:FireClient(player,Request) Paintertable 171 — 6y
0
Thanks anyway though! Knineteen19 307 — 6y
0
Yeah that's what worked for me. Knineteen19 307 — 6y
0
jeah, exacly. Okey, figured it out too :D Nice. I just checked my remote function and it said it there. Paintertable 171 — 6y
0
Would be nice, if you could accept my answer then :)) Paintertable 171 — 6y
0
I'll accept your answer anyway because you helped me figure it out though. Knineteen19 307 — 6y
0
Thanks, good luck with your script Paintertable 171 — 6y
Ad

Answer this question