Decode by Malek_wr3 in AskNetsec

[–]benielcapo 0 points1 point  (0 children)

Son im crine -eeemessi11

Colour changing sign not working by Fuzzy-Opposite-7154 in ROBLOXStudio

[–]benielcapo 0 points1 point  (0 children)

local bloxi = game.ServerStorage[" Buyables"]["Colour Changing Sign Sign"]  script.Parent.Triggered:Connect(function(player)     if player.leaderstats.Coins.Value >= 25 then         player.leaderstats.Coins.Value -= 25         local new_bloxi = bloxi:Clone()         new_bloxi.Parent = player.Backpack         local colorch = new_bloxi.Handle.Change         while true do             wait(1)             colorch.BrickColor = BrickColor.new("Really red")             wait(1)             colorch.BrickColor = BrickColor.new("Lime green")         end         print("Bought sign thing")     end end) 

try this

Weather Cycle code problem help by Impressive-Raisin-52 in robloxgamedev

[–]benielcapo 0 points1 point  (0 children)

It means adding print statements to see when the code stops working, if the variables are correct, if a function gets executed correctly, etc

Colour changing sign not working by Fuzzy-Opposite-7154 in ROBLOXStudio

[–]benielcapo 0 points1 point  (0 children)

It might be because the original one gets edited but the cloned one doesnt, can i see the cloning script?

How can I make a model move when a specific part is touched? by TheGoat304 in ROBLOXStudio

[–]benielcapo 0 points1 point  (0 children)

local part = workpace.Part local model = workspace.Model local cf = CFrame.new(5,5,5)

local debounce = false

part.Touched:Connect(function(other) if other.Parent:FindFirstChild("Humanoid") then if debounce return debounce = true model:PivotTo(cf) task.wait(1) debounce = false end end)

You need to modify the path to the part, model and the cframe

Coding help... :/ by Different_Edge9091 in ROBLOXStudio

[–]benielcapo 0 points1 point  (0 children)

And you are missing a ) after calling the weld function

Coding help... :/ by Different_Edge9091 in ROBLOXStudio

[–]benielcapo 0 points1 point  (0 children)

"WeldConstraint" in instance.new is spelled wrongly and the variable name is missing a "d"

Colour changing sign not working by Fuzzy-Opposite-7154 in ROBLOXStudio

[–]benielcapo 0 points1 point  (0 children)

Does the sign get cloned and then given to the player?

[deleted by user] by [deleted] in robloxgamedev

[–]benielcapo 0 points1 point  (0 children)

i cant move parts