This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Client-Side GUI Script for Xeno Executor | |
local Players = game:GetService("Players") | |
local player = Players.LocalPlayer | |
local GUI = Instance.new("ScreenGui") | |
GUI.Parent = player:WaitForChild("PlayerGui") | |
local fruitData = game:GetService("DataStoreService"):GetDataStore("PermFruits") | |
local fruits = {"FlameFruit", "IceFruit", "GumFruit"} -- Add the fruit names you want to support | |
-- Create buttons for each fruit |