I am trying to make a custom crosshair feature in my game by pasting an images url ID into a textbox
Im getting this error and i dont know how to fix it: 18:04:33.863 Players.Moneyguy008.PlayerGui.Custom.Frame.Change.LocalScript:14: attempt to perform arithmetic (add) on nil and number - Client - LocalScript:14
I checked the dev hub and I didn’t find any solutions
If you know a way to do this please tell me
here’s the code
local button = script.Parent
local frame = script.Parent.Parent
local showcase = frame.Showcase
local textbox = frame.TextBox
local image = game.Players.LocalPlayer.PlayerGui.Aim.ImageLabel
button.MouseButton1Click:Connect(function()
local url = textbox.Text
print("image:", image)
print("showcase:", showcase)
local idStartIndex = string.find(url, "/asset/") + 7
local idEndIndex = string.find(url, "/", idStartIndex) - 1
local imageID = string.sub(url, idStartIndex, idEndIndex)
local imageURL = "https://www.roblox.com/library/" .. imageID
image.Image = imageURL
showcase.Image = imageURL
end)
If you go to a page of an image using the roblox creator page and look at the url it will look like this: https://create.roblox.com/marketplace/asset/711250116/orange-bubble-trouble. i want you to be able to copy the number from it: 711250116. and paste it into a text box it will change an image label based on those numbers.
local Icon
local Players = game:GetService("Players")
local player = Players.LocalPlayer
local mouse = player:GetMouse()
TextBox.Changed:Connect(function(Value)
if type(TextBox.Text) == "number" then -- is it a number?
TextBox.Text = Icon
end
end)
TextButton.MouseButton1Click:Connect(function()
mouse.Icon = "rbxassetid://"..Icon -- you can just use TextBox.Text but you have to make sure it's a number.
end)
The error is: 18:04:33.863 Players.Moneyguy008.PlayerGui.Custom.Frame.Change.LocalScript:14: attempt to perform arithmetic (add) on nil and number - Client - LocalScript:14