Untitled

mail@pastecode.io avatar
unknown
lua
2 years ago
318 B
7
Indexable
Never
-- wczytuje postac gracza

character = game.Players.LocalPlayer.Character

-- funkcja pokazujaca sklep po wejsicu gracza na pole 
function Pokaz(hit)
	if hit.Parent == character then 
		script.Parent.Frame.Visible = true
		character.Humanoid:UnequipTools()
	end
end

game.Workspace.Sklep.Podest.Touched:Connect(Pokaz)