Uncaught (in promise) SyntaxError: Unexpected end of input at script.js:8:42

Advertisements I am attempting to create a ROBLOX asset id returner using this api. I am using the product info function / api get request. I have made a script, but I continually get the error Uncaught (in promise) SyntaxError: Unexpected end of input at script.js:8:42 when I am extremely close to finishing. Would someone… Read More Uncaught (in promise) SyntaxError: Unexpected end of input at script.js:8:42

Attempt to compare number < Instance but it's the value, not the instance (i checked and tried)

Advertisements So I am making a Roblox game and everything went well, i fixed all the issues except this one, I can’t figure out why it doesn’t work and still says "attempt to compare number < Instance" because I need a remote event from the client’s side to fix the capacity of the backpack (I… Read More Attempt to compare number < Instance but it's the value, not the instance (i checked and tried)

attempt to index nil with 'LocalPlayer'

Advertisements so basically i was making a power up script until its error showed up: Workspace.Part.Script:5: attempt to index nil with ‘LocalPlayer’. Also im new to all of this so i dont really have the best clue on why this happened. heres the script: ` script.Parent.Touched:Connect(function(hit) if hit.Parent:FindFirstChild("Humanoid") then hit.Parent.Humanoid.MaxHealth = math.huge hit.Parent.Humanoid.Health = math.huge… Read More attempt to index nil with 'LocalPlayer'

How to use TextBox input to change a value by firing a RemoteEvent

Advertisements I’ve been trying to figure this out for about 30 minutes and have had no luck. I’m stumped and cannot figure this out. I am trying to make a script that allows the player to change their money by inputting a number into their TextBox. Local Script (child of TextBox) script.Parent.FocusLost:Connect(function(enter) if enter then… Read More How to use TextBox input to change a value by firing a RemoteEvent