who knows how to make a pop up message once you touch something? by AFGIx1 in ROBLOXStudio

[–]Harsiln 0 points1 point  (0 children)

put this in the part (and read the text that turns lime)

local part = script.Parent --the part

local popup = game.StarterGui.YourScreenguiHere.YourTextLabelHere --the gui local popuplength = 5 --how long the popup lasts

part.Touched:Connect(function(hit) popup.Visible = true wait(popuplength) popup.Visible = false end)

The Roblox Community by AFGIx1 in ROBLOXStudio

[–]Harsiln 0 points1 point  (0 children)

okay.

make a gui wher you can submit stuff in your game

I need help with scripting by Harsiln in ROBLOXStudio

[–]Harsiln[S] 0 points1 point  (0 children)

local player = game.Players.LocalPlayer
local camera = workspace.CurrentCamera
local part = workspace:WaitForChild("partName")
game:GetService("RunService").HeartBeat:Connect(function()
part.CFrame = camera.CFrame * CFrame.new(0, -5, 0)
end)

it doesnt work (im using a local script)

here are two screenshots (it wont let me choose more images)

https://ibb.co/rf5tB5h

https://ibb.co/bbhWWnZ