So How Would I just make a script where if someone got within range of a block (Or Inside it) Would I make a line of text appear on the bottom of there screen?
I know how to make the block cancollideable but not how to script it.
Try using a LocalScript if you want it to only be for the player that come close within range. Put this in the Brick that is your range.
This could work, it may not.
--Made by TheArcticTerminal local brickRange = script.Parent local player = game.Players.LocalPlayer brickRange.Transparency = 1 brickRange.Touched:connect(function(Hit) if hit == player.Character:FindFirstChild("Humanoid") then m = instance.new("Message") m.Parent = player m.Text = ("Insert Text here") wait(1) hit:BreakJoints end end)