[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:
003 | savingGui:FireClient( "saving" ) |
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) |
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) |
016 | if limitBreaker.Value ~ = true then |
017 | alds:SetAsync(player.UserId,player.Stats.Agility.AgilityLevel.Value) |
018 | axpds:SetAsync(player.UserId,player.Stats.Agility.AgilXp.Value) |
021 | if limitBreaker.Value ~ = true then |
022 | plds:SetAsync(player.UserId,player.Stats.Power.PowerLevel.Value) |
023 | pxpds:SetAsync(player.UserId,player.Stats.Power.PowerXp.Value) |
026 | powerStore:SetAsync(player.UserId,player.leaderstats.Power.Value) |
028 | print ( "Saved " ..player.Name.. "'s data of " ..slds:GetAsync(player.UserId).. " strength, " ..jlds:GetAsync(player.UserId).. " jump, " ..plds:GetAsync(player.UserId).. " power, and " ..alds:GetAsync(player.UserId).. " agility!" ) |
029 | elseif limitBreaker.Value = = true then |
030 | print ( "Saving " ..player.Name.. "'s Data . . ." ) |
031 | if limitBreaker.Value = = true then |
032 | slds:SetAsync(player.UserId,player.Stats.Strength.StrengthLevel.Value/ 2 ) |
033 | sxpds:SetAsync(player.UserId,player.Stats.Strength.StrengthXp.Value) |
036 | if limitBreaker.Value = = true then |
037 | jlds:SetAsync(player.UserId,player.Stats.Jump.JumpLevel.Value/ 2 ) |
038 | jxpds:SetAsync(player.UserId,player.Stats.Jump.JumpXp.Value) |
041 | if limitBreaker.Value = = true then |
042 | alds:SetAsync(player.UserId,player.Stats.Agility.AgilityLevel.Value/ 2 ) |
043 | axpds:SetAsync(player.UserId,player.Stats.Agility.AgilXp.Value) |
046 | if limitBreaker.Value ~ = true then |
047 | plds:SetAsync(player.UserId,player.Stats.Power.PowerLevel.Value/ 2 ) |
048 | pxpds:SetAsync(player.UserId,player.Stats.Power.PowerXp.Value) |
051 | powerStore:SetAsync(player.UserId,player.leaderstats.Power.Value) |
053 | print ( "Saved " ..player.Name.. "'s data of " ..slds:GetAsync(player.UserId).. " strength, " ..jlds:GetAsync(player.UserId).. " jump, " ..plds:GetAsync(player.UserId).. " power, and " ..alds:GetAsync(player.UserId).. " agility!" ) |
055 | savingGui:FireClient( "saved" ) |
060 | game.Players.PlayerRemoving:connect( function (player) |
061 | local limitBreaker = game.Workspace:WaitForChild(player.Name).Skills.LocalLimitBreaker:WaitForChild( "LimitBreaker" ) |
062 | savingGui:FireClient( "saving" ) |
063 | if limitBreaker.Value ~ = true then |
064 | print ( "Saving " ..player.Name.. "'s Data . . ." ) |
065 | if limitBreaker.Value ~ = true then |
066 | slds:SetAsync(player.UserId,player.Stats.Strength.StrengthLevel.Value) |
067 | sxpds:SetAsync(player.UserId,player.Stats.Strength.StrengthXp.Value) |
070 | if limitBreaker.Value ~ = true then |
071 | jlds:SetAsync(player.UserId,player.Stats.Jump.JumpLevel.Value) |
072 | jxpds:SetAsync(player.UserId,player.Stats.Jump.JumpXp.Value) |
075 | if limitBreaker.Value ~ = true then |
076 | alds:SetAsync(player.UserId,player.Stats.Agility.AgilityLevel.Value) |
077 | axpds:SetAsync(player.UserId,player.Stats.Agility.AgilXp.Value) |
080 | if limitBreaker.Value ~ = true then |
081 | plds:SetAsync(player.UserId,player.Stats.Power.PowerLevel.Value) |
082 | pxpds:SetAsync(player.UserId,player.Stats.Power.PowerXp.Value) |
085 | powerStore:SetAsync(player.UserId,player.leaderstats.Power.Value) |
087 | print ( "Saved " ..player.Name.. "'s data of " ..slds:GetAsync(player.UserId).. " strength, " ..jlds:GetAsync(player.UserId).. " jump, " ..plds:GetAsync(player.UserId).. " power, and " ..alds:GetAsync(player.UserId).. " agility!" ) |
088 | elseif limitBreaker.Value = = true then |
089 | print ( "Saving " ..player.Name.. "'s Data . . ." ) |
090 | if limitBreaker.Value = = true then |
091 | slds:SetAsync(player.UserId,player.Stats.Strength.StrengthLevel.Value/ 2 ) |
092 | sxpds:SetAsync(player.UserId,player.Stats.Strength.StrengthXp.Value) |
095 | if limitBreaker.Value = = true then |
096 | jlds:SetAsync(player.UserId,player.Stats.Jump.JumpLevel.Value/ 2 ) |
097 | jxpds:SetAsync(player.UserId,player.Stats.Jump.JumpXp.Value) |
100 | if limitBreaker.Value = = true then |
101 | alds:SetAsync(player.UserId,player.Stats.Agility.AgilityLevel.Value/ 2 ) |
102 | axpds:SetAsync(player.UserId,player.Stats.Agility.AgilXp.Value) |
105 | if limitBreaker.Value ~ = true then |
106 | plds:SetAsync(player.UserId,player.Stats.Power.PowerLevel.Value/ 2 ) |
107 | pxpds:SetAsync(player.UserId,player.Stats.Power.PowerXp.Value) |
110 | powerStore:SetAsync(player.UserId,player.leaderstats.Power.Value) |
112 | print ( "Saved " ..player.Name.. "'s data of " ..slds:GetAsync(player.UserId).. " strength, " ..jlds:GetAsync(player.UserId).. " jump, " ..plds:GetAsync(player.UserId).. " power, and " ..alds:GetAsync(player.UserId).. " agility!" ) |
114 | savingGui:FireClient( "saved" ) |
Client:
01 | local repStorage = game:GetService( "ReplicatedStorage" ) |
02 | local saveGui = repStorage:WaitForChild( "Stats-Related" ):WaitForChild( "SavingGui" ) |
04 | local saveImage = script.Parent |
05 | local text = saveImage:WaitForChild( "TextLabel" ) |
09 | local openPose = UDim 2. new( 0.81 , 0 , 0.022 , 0 ) |
10 | local closePose = UDim 2. new( 1 , 0 , 0.022 , 0 ) |
12 | saveGui.OnClientEvent:Connect( function (stateOfSaving) |
13 | if stateOfSaving = = "saving" then |
15 | saveImage:TweenPosition(openPose, "Out" , "Quart" , 1 ) |
17 | while enabled = = true do |
18 | text.Text = "Saving ." |
20 | text.Text = "Saving . ." |
22 | text.Text = "Saving . . ." |
26 | elseif stateOfSaving = = "saved" then |
31 | saveImage:TweenPosition(closePose, "In" , "Quart" , 1 ) |
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!