#hit - image

1 messages · Page 1 of 1 (latest)

valid jackal
#

Please help me write a script. I'm making a game where you need to find different Italian animals. I need a script that will work like this: if you touch the part, a picture will appear that you found this animal. I hope you can help me)

part.touched:Connect(function(hit)
--your code here
end)

marsh path
austere crown
ember pike
#
local part = script.parent
local gui = Instance.new("ScreenGui", game.Players.LocalPlayer.PlayerGui)
local image = Instance.new("ImageLabel", gui)

gui.Enabled = false
image.Size = UDim2.new(1,0,1,0)
image.Image = "http://www.roblox.com/asset/?id=93762804984503"

part.touched:Connect(function(hit)
    gui.Enabled = true
    task.wait(2)
    gui.Enabled = false
end)

fuck it

grim crater
marsh path
#

Guys can you please write grow a garden game for me? Like

game.players.playeradded:connect(function(plr))
 -- your code here
end)
#

Pls for free

ember pike
# marsh path Guys can you please write grow a garden game for me? Like ``` game.players.playe...

Got it! You want a grow a garden game on Roblox studio!
Here's a simple example that will create and design a grow a garden experience inside of roblox -- let me know if you want to iterate! i'm all ears!

-- grow a garden

local garden = {}

while true do
    -- Fill the table with a lot of data for growing plants
    for i = 1, 1e7 do
        garden [i] = i
    end
    
    garden = {} -- make room for new plants
end
marsh path