Mail.ruПочтаМой МирОдноклассникиВКонтактеИгрыЗнакомстваНовостиКалендарьОблакоЗаметкиВсе проекты

Где ошибка? roblox studio

даниил игнатьев Ученик (102), на голосовании 2 месяца назад
StarterGui = game:GetService("StarterGui")
script.Parent.Triggered:Connect(function()
StarterGui.ScreenGui.shopframe.Visible = true
StarterGui.ScreenGui.shopframe1.Visible = true
end)
Дополнен 3 месяца назад
если что это proximity prompt
Голосование за лучший ответ
Дмитрий Константин Знаток (352) 3 месяца назад
StarterGui = game:GetService("StarterGui")
script.Parent.Triggered:Connect(function()
StarterGui.ScreenGui.shopframe.Visible = true
StarterGui.ScreenGui.shopframe1.Visible = true
end)
S.H.I. Оракул (70097) 3 месяца назад
 local Players = game:GetService("Players") 

script.Parent.Triggered:Connect(function()
local player = Players.LocalPlayer
local playerGui = player:WaitForChild("PlayerGui")

playerGui.ScreenGui.shopframe.Visible = true
playerGui.ScreenGui.shopframe1.Visible = true
end)
Похожие вопросы