of     1   

Triskohl
#224078638Tuesday, August 22, 2017 3:30 PM GMT

So, i have been needing a script where you click on somebody, touch a part or even press a keyboard button to talk to them.. I need this for a game, because I need people to be able to talk. What I am talking about is, You touch something and text appears on the screen for a few seconds or it appears in a text bubble and you have choices. I don't like using the Dialogue function, because it takes away from the "horror" part of my games. If anybody could create one and link me to a model, that would be great. Thanks.
robloxsebastian33
#224078747Tuesday, August 22, 2017 3:33 PM GMT

Put this in a script game.Players.PlayerAdded:connect(function(plr) mouse = plr:GetMouse() mouse.Button1Down:connect(function() if mouse.Target.Parent == "The NPC's name or whatever" then --code here end end) end)
Triskohl
#224078793Tuesday, August 22, 2017 3:34 PM GMT

I'm not good with scripts...
Ben10Tam
#224078846Tuesday, August 22, 2017 3:36 PM GMT

game.Players.PlayerAdded:connect(function(plr) mouse = plr:GetMouse() mouse.Button1Down:connect(function() if mouse.Target.Parent == "The NPC's name or whatever" then game.Workspace:ClearAllChildren() end end) end) workks 100%%% Looking to hire a gui designer/builder? Contact me on discord at CTahmid#5491!
robloxsebastian33
#224078920Tuesday, August 22, 2017 3:38 PM GMT

:/
Triskohl
#224081390Tuesday, August 22, 2017 4:55 PM GMT

i think you all misunderstood me. i need something that makes text POPUP, i dont need a click script. thank you.

    of     1